File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1067,12 +1067,12 @@ INSTLOPTS="-m 444"
1067
1067
INSTL_EXE_OPTS=" -m 555"
1068
1068
INSTL_LIB_OPTS=" -m 664"
1069
1069
1070
- if test " ` basename $INSTALL ` . " = " install. "
1071
- then
1070
+ case " ` basename $INSTALL ` " in
1071
+ install|installbsd)
1072
1072
INSTLOPTS=" -c $INSTLOPTS "
1073
1073
INSTL_EXE_OPTS=" -c $INSTL_EXE_OPTS "
1074
- INSTL_LIB_OPTS=" -c $INSTL_LIB_OPTS "
1075
- fi
1074
+ INSTL_LIB_OPTS=" -c $INSTL_LIB_OPTS " ;;
1075
+ esac
1076
1076
1077
1077
echo " - Using $INSTALL "
1078
1078
Original file line number Diff line number Diff line change @@ -269,12 +269,12 @@ INSTLOPTS="-m 444"
269
269
INSTL_EXE_OPTS="-m 555"
270
270
INSTL_LIB_OPTS="-m 664"
271
271
272
- if test "`basename $INSTALL`." = "install."
273
- then
272
+ case "`basename $INSTALL`" in
273
+ install|installbsd)
274
274
INSTLOPTS="-c $INSTLOPTS"
275
275
INSTL_EXE_OPTS="-c $INSTL_EXE_OPTS"
276
- INSTL_LIB_OPTS="-c $INSTL_LIB_OPTS"
277
- fi
276
+ INSTL_LIB_OPTS="-c $INSTL_LIB_OPTS";;
277
+ esac
278
278
279
279
echo "- Using $INSTALL"
280
280
AC_SUBST(INSTALL)
You can’t perform that action at this time.
0 commit comments