make install: drop -S' flag to strip'

It turns out that no flags are standard, so don't try to use
any. That seems to be fine on the platforms that I tried.
This commit is contained in:
Matthew Flatt 2013-08-12 12:34:31 -06:00
parent 89e99657dd
commit 2d8edeffe8
2 changed files with 4 additions and 2 deletions

View File

@ -4435,7 +4435,8 @@ else
STRIP="$ac_cv_prog_STRIP"
fi
STRIP_DEBUG="$STRIP -S"
# Used to add -S flag, but not all `strip' variants support it:
STRIP_DEBUG="$STRIP"
fi
############## C flags ################

View File

@ -831,7 +831,8 @@ fi
if test "${enable_strip}" = "yes" ; then
AC_CHECK_TOOL([STRIP], [strip])
STRIP_DEBUG="$STRIP -S"
# Used to add -S flag, but not all `strip' variants support it:
STRIP_DEBUG="$STRIP"
fi
############## C flags ################