diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-02-24 15:19:20 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-02-24 15:19:20 +0000 |
commit | 45e9902b574edb798723299f05e77c54dffee68a (patch) | |
tree | f9c3fcd5098cfc5cf73a5c1525e2dca20ba54390 | |
parent | 5bab5b528ace033b7bedd900e18ee05d3c51c59a (diff) | |
download | prosody-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-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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/'`" |