blob: 13b4ebc5f7ef9ba63b67c6f8a5a44add3f11564c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Index: apr-util/apu-config.in
===================================================================
RCS file: /home/cvspublic/apr-util/apu-config.in,v
retrieving revision 1.7
diff -u -r1.7 apu-config.in
--- apu-config.in 13 Mar 2002 20:40:46 -0000 1.7
+++ apu-config.in 14 Mar 2002 00:45:06 -0000
@@ -97,7 +97,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
|