We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbba5db commit 3874169Copy full SHA for 3874169
configure
100644
100755
@@ -35,6 +35,7 @@ show_help(){
35
echo
36
echo " --help print this message"
37
echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
38
+ echo " --bindir=DIR install binaries in DIR [$PREFIX/bin]"
39
echo " --libdir=DIR install libs in DIR [$PREFIX/lib]"
40
echo " --incdir=DIR install includes in DIR [$PREFIX/include]"
41
echo " --enable-static build static libraries [yes]"
@@ -88,6 +89,9 @@ for opt do
88
89
--prefix=*)
90
PREFIX="$optval"
91
;;
92
+ --bindir=*)
93
+ bindir="$optval"
94
+ ;;
95
--libdir=*)
96
libdir="$optval"
97
0 commit comments