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 | cb8fbcd0ca8c0951d30e9f1b2c0744598b2ad484 (patch) | |
tree | f9c3fcd5098cfc5cf73a5c1525e2dca20ba54390 /configure | |
parent | e9f44e3d6599644b6c33011fb775fd7b381c4ef0 (diff) | |
download | prosody-cb8fbcd0ca8c0951d30e9f1b2c0744598b2ad484.tar.gz prosody-cb8fbcd0ca8c0951d30e9f1b2c0744598b2ad484.zip |
configure: Fix for commit cd0088c73daf - update LIBDIR if --prefix is set and --libdir isn't (thanks Medics)
Diffstat (limited to 'configure')
-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/'`" |