git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
8a3eb1f
)
allow-configure-time-override-of-DEST-20011001
author
Derrick Brashear
<shadow@dementia.org>
Mon, 1 Oct 2001 20:20:04 +0000 (20:20 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Mon, 1 Oct 2001 20:20:04 +0000 (20:20 +0000)
so DEST=foo ./configure will work
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
f9f74e7
..
aaeb6e4
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-402,7
+402,9
@@
SRCDIR_PARENT=`pwd`
TOP_SRCDIR="${SRCDIR_PARENT}/src"
TOP_INCDIR="${SRCDIR_PARENT}/include"
TOP_LIBDIR="${SRCDIR_PARENT}/lib"
-DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest"
+if test "${DEST}x" = "x"; then
+ DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest"
+fi
dnl checks for header files.
AC_HEADER_STDC