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:
parent
89e99657dd
commit
2d8edeffe8
3
racket/src/configure
vendored
3
racket/src/configure
vendored
|
@ -4435,7 +4435,8 @@ else
|
||||||
STRIP="$ac_cv_prog_STRIP"
|
STRIP="$ac_cv_prog_STRIP"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
STRIP_DEBUG="$STRIP -S"
|
# Used to add -S flag, but not all `strip' variants support it:
|
||||||
|
STRIP_DEBUG="$STRIP"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
############## C flags ################
|
############## C flags ################
|
||||||
|
|
|
@ -831,7 +831,8 @@ fi
|
||||||
|
|
||||||
if test "${enable_strip}" = "yes" ; then
|
if test "${enable_strip}" = "yes" ; then
|
||||||
AC_CHECK_TOOL([STRIP], [strip])
|
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
|
fi
|
||||||
|
|
||||||
############## C flags ################
|
############## C flags ################
|
||||||
|
|
Loading…
Reference in New Issue
Block a user