root/acinclude.m4

Revision 1:d03d67d05dcf, 0.6 kB (checked in by Daniel Burrows <dburrows@…>, 5 years ago)

[aptitude @ Import the Subversion repository into darcs.]

Line 
1dnl FC_EXPAND_DIR(VARNAME, DIR)
2dnl expands occurrences of ${prefix} and ${exec_prefix} in the given DIR,
3dnl and assigns the resulting string to VARNAME
4dnl example: FC_EXPAND_DIR(LOCALEDIR, "$datadir/locale")
5dnl eg, then: AC_DEFINE_UNQUOTED(LOCALEDIR, "$LOCALEDIR")
6dnl by Alexandre Oliva
7dnl from http://www.cygnus.com/ml/automake/1998-Aug/0040.html
8AC_DEFUN([FC_EXPAND_DIR], [
9        $1=$2
10        $1=`(
11            test "x$prefix" = xNONE && prefix="$ac_default_prefix"
12            test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
13            eval echo \""[$]$1"\"
14        )`
15])
Note: See TracBrowser for help on using the browser.