Skip to content

Commit 9f115ad

Browse files
authoredJun 3, 2018
Merge pull request #15 from roydmerkel/master
Added --bindir install option to configure so we can specify the bind…
2 parents dbba5db + 3874169 commit 9f115ad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

Diff for: ‎configure

100644100755
+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ show_help(){
3535
echo
3636
echo " --help print this message"
3737
echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
38+
echo " --bindir=DIR install binaries in DIR [$PREFIX/bin]"
3839
echo " --libdir=DIR install libs in DIR [$PREFIX/lib]"
3940
echo " --incdir=DIR install includes in DIR [$PREFIX/include]"
4041
echo " --enable-static build static libraries [yes]"
@@ -88,6 +89,9 @@ for opt do
8889
--prefix=*)
8990
PREFIX="$optval"
9091
;;
92+
--bindir=*)
93+
bindir="$optval"
94+
;;
9195
--libdir=*)
9296
libdir="$optval"
9397
;;

0 commit comments

Comments
 (0)
Please sign in to comment.