diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1997-04-28 22:40:35 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1997-04-28 22:40:35 +0000 |
| commit | f4279c46e7776a3f194d08a2e2870239e44b4c65 (patch) | |
| tree | 4baae1e050163df64417874c6afb86a2ff8f3430 /src/configure | |
| parent | 81acad4932e1a4fa525aa83970865af996daf5f0 (diff) | |
Fix configure so that installbsd gets -c also
From: Lee Roth <roth@tpusa.com>
Diffstat (limited to 'src/configure')
| -rwxr-xr-x | src/configure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/configure b/src/configure index 3828180454a..d155327fe3d 100755 --- a/src/configure +++ b/src/configure @@ -1067,12 +1067,12 @@ INSTLOPTS="-m 444" INSTL_EXE_OPTS="-m 555" INSTL_LIB_OPTS="-m 664" -if test "`basename $INSTALL`." = "install." -then +case "`basename $INSTALL`" in + install|installbsd) INSTLOPTS="-c $INSTLOPTS" INSTL_EXE_OPTS="-c $INSTL_EXE_OPTS" - INSTL_LIB_OPTS="-c $INSTL_LIB_OPTS" -fi + INSTL_LIB_OPTS="-c $INSTL_LIB_OPTS";; +esac echo "- Using $INSTALL" |
