Skip to content

Commit

Permalink
Merge pull request #15 from roydmerkel/master
Browse files Browse the repository at this point in the history
Added --bindir install option to configure so we can specify the bind…
  • Loading branch information
witwall authored Jun 3, 2018
2 parents dbba5db + 3874169 commit 9f115ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configure
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ show_help(){
echo
echo " --help print this message"
echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
echo " --bindir=DIR install binaries in DIR [$PREFIX/bin]"
echo " --libdir=DIR install libs in DIR [$PREFIX/lib]"
echo " --incdir=DIR install includes in DIR [$PREFIX/include]"
echo " --enable-static build static libraries [yes]"
Expand Down Expand Up @@ -88,6 +89,9 @@ for opt do
--prefix=*)
PREFIX="$optval"
;;
--bindir=*)
bindir="$optval"
;;
--libdir=*)
libdir="$optval"
;;
Expand Down

0 comments on commit 9f115ad

Please sign in to comment.