From a878b9e6899e87ac31f211f3d48ef29f9fbc59d7 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Mon, 1 Oct 2001 20:20:04 +0000 Subject: [PATCH] allow-configure-time-override-of-DEST-20011001 so DEST=foo ./configure will work --- configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index f9f74e77e..aaeb6e4b4 100644 --- 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 -- 2.39.5