Download M4 Source Macro Index Page

ax_dirname

Synopsis

AX_DIRNAME(PATHNAME)

Description

Parts of the implementation have been taken from AS_DIRNAME from the main autoconf package in generation 2.5x. However, we do only use "sed" to cut out the dirname, and we do additionally clean up some dir/.. parts in the resulting pattern.

this macro may be used in autoconf 2.13 scripts as well.

Author

Guido Draheim <guidod@gmx.de>

Last Modified

2005-01-21

M4 Source Code

AC_DEFUN([AX_DIRNAME],
[echo X[]$1 |
    sed ['s/\/[^\/:][^\/:]*\/..\//\//g
          s/\/[^\/:][^\/:]*\/..\//\//g
          s/\/[^\/:][^\/:]*\/..\//\//g
          s/\/[^\/:][^\/:]*\/..\//\//g
          /^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
          /^X\(\/\/\)[^/].*/{ s//\1/; q; }
          /^X\(\/\/\)$/{ s//\1/; q; }
          /^X\(\/\).*/{ s//\1/; q; }
          s/.*/./; q']])