diff options
author | midipix <writeonce@midipix.org> | 2017-01-26 22:30:38 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-01-29 17:49:06 -0500 |
commit | 67be493a5cebd953c39b0d9d7c26ba3a95471095 (patch) | |
tree | b3f2b896e0e9d3b63db473a47d90f35346e26171 /configure | |
parent | 6527a97a07cf67c1d58c7a6a58ff09fc6ada7bc3 (diff) | |
download | slibtool-67be493a5cebd953c39b0d9d7c26ba3a95471095.tar.bz2 slibtool-67be493a5cebd953c39b0d9d7c26ba3a95471095.tar.xz |
build system: added --sbindir support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -41,6 +41,7 @@ init_vars() mb_prefix=$PREFIX mb_exec_prefix=$EXEC_PREFIX mb_bindir=$BINDIR + mb_sbindir=$SBINDIR mb_libdir=$LIBDIR mb_includedir=$INCLUDEDIR mb_mandir=$MANDIR @@ -157,6 +158,7 @@ common_defaults() && mb_exec_prefix=$mb_prefix [ -z "$mb_bindir" ] && mb_bindir=$mb_exec_prefix/bin + [ -z "$mb_sbindir" ] && mb_sbindir=$mb_exec_prefix/sbin [ -z "$mb_libdir" ] && mb_libdir=$mb_exec_prefix/lib [ -z "$mb_includedir" ] && mb_includedir=$mb_prefix/include [ -z "$mb_datarootdir" ] && mb_datarootdir=$mb_prefix/share @@ -448,6 +450,7 @@ config_copy() -e 's^@prefix@^'"$mb_prefix"'^g' \ -e 's^@exec_prefix@^'"$mb_exec_prefix"'^g' \ -e 's^@bindir@^'"$mb_bindir"'^g' \ + -e 's^@sbindir@^'"$mb_sbindir"'^g' \ -e 's^@libdir@^'"$mb_libdir"'^g' \ -e 's^@includedir@^'"$mb_includedir"'^g' \ -e 's^@mandir@^'"$mb_mandir"'^g' \ @@ -534,6 +537,9 @@ for arg ; do --bindir=*) mb_bindir=${arg#*=} ;; + --sbindir=*) + mb_sbindir=${arg#*=} + ;; --libdir=*) mb_libdir=${arg#*=} ;; |