gstein 02/03/13 18:19:07
Modified: . apu-config.in
Log:
Fix the install detection code in case the install area uses a
symbolic link.
Submitted by: Garrett Rooney <[EMAIL PROTECTED]>
Revision Changes Path
1.8 +2 -1 apr-util/apu-config.in
Index: apu-config.in
===================================================================
RCS file: /home/cvs/apr-util/apu-config.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- apu-config.in 13 Mar 2002 20:40:46 -0000 1.7
+++ apu-config.in 14 Mar 2002 02:19:07 -0000 1.8
@@ -100,7 +100,8 @@
thisdir="`dirname $0`"
thisdir="`cd $thisdir && pwd`"
-if test "$bindir" = "$thisdir"; then
+tmpbindir="`cd $bindir && pwd`"
+if test "$tmpbindir" = "$thisdir"; then
location=installed
elif test "$APR_SOURCE_DIR" = "$thisdir"; then
location=source