# HG changeset patch # User Eric Warmenhoven # Date 1002573452 0 # Node ID 824e1afefdd3780c6cad0a7fd8793f1e207c4903 # Parent f8931310296216df34b5dbb3cd23cffffc54f841 [gaim-migrate @ 2465] Jim Knoble says: $ prefix=/usr $ exec_prefix='${prefix}' $ bindir='${exec_prefix}/bin' $ echo "--- bindir is ${bindir}" --- bindir is ${exec_prefix}/bin $ eval echo "--- bindir is ${bindir}" --- bindir is ${prefix}/bin $ eval eval echo "--- bindir is ${bindir}" ^^^^^^^^^^^ --- bindir is /usr/bin ^^^^^^^^^^ $ Be sure to comment that so that no one tries using any weird quotes or shell metacharacters there. Stupid shells. Where's the fvcking recursive expansion operator? committer: Tailor Script diff -r f89313102962 -r 824e1afefdd3 configure.ac --- a/configure.ac Mon Oct 08 20:30:45 2001 +0000 +++ b/configure.ac Mon Oct 08 20:37:32 2001 +0000 @@ -394,7 +394,7 @@ echo echo Print debugging messages.... : $enable_debug echo -echo Gaim will be installed in $prefix/bin. +eval eval echo Gaim will be installed in $bindir. if test "x$gaimpath" != "x" ; then echo Warning: You have an old copy of gaim at $gaimpath. fi