Update of /cvsroot/gaim/gaim
In directory usw-pr-cvs1:/tmp/cvs-serv21418
Modified Files:
configure.ac
Log Message:
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?
Index: configure.ac
===================================================================
RCS file: /cvsroot/gaim/gaim/configure.ac,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- configure.ac 2001/10/05 22:08:13 1.19
+++ configure.ac 2001/10/08 20:37:32 1.20
@@ -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
|