aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-02-24 15:19:20 +0000
committerMatthew Wild <mwild1@gmail.com>2015-02-24 15:19:20 +0000
commit45e9902b574edb798723299f05e77c54dffee68a (patch)
treef9c3fcd5098cfc5cf73a5c1525e2dca20ba54390
parent5bab5b528ace033b7bedd900e18ee05d3c51c59a (diff)
downloadprosody-45e9902b574edb798723299f05e77c54dffee68a.tar.gz
prosody-45e9902b574edb798723299f05e77c54dffee68a.zip
configure: Fix for commit cd0088c73daf - update LIBDIR if --prefix is set and --libdir isn't (thanks Medics)
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index c27517fc..199f5fcf 100755
--- a/configure
+++ b/configure
@@ -139,6 +139,7 @@ do
;;
--libdir=*)
LIBDIR="$value"
+ LIBDIR_SET=yes
;;
--datadir=*)
DATADIR="$value"
@@ -213,6 +214,11 @@ then
fi
fi
+if [ "$PREFIX_SET" = "yes" -a ! "$LIBDIR_SET" = "yes" ]
+then
+ LIBDIR=$PREFIX/lib
+fi
+
find_program() {
path="$PATH"
item="`echo "$path" | sed 's/\([^:]*\):.*/\1/'`"