From 3874169327f32c31f5e7f54f0fb4791b6118e6e0 Mon Sep 17 00:00:00 2001 From: Roy Merkel Date: Sat, 2 Jun 2018 19:52:09 -0700 Subject: [PATCH] Added --bindir install option to configure so we can specify the bindir parameter. --- configure | 4 ++++ 1 file changed, 4 insertions(+) mode change 100644 => 100755 configure diff --git a/configure b/configure old mode 100644 new mode 100755 index b3c6c19..790ab03 --- a/configure +++ b/configure @@ -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]" @@ -88,6 +89,9 @@ for opt do --prefix=*) PREFIX="$optval" ;; + --bindir=*) + bindir="$optval" + ;; --libdir=*) libdir="$optval" ;;