Kindly ask strip to not mess up timestamps in static libraries

This commit is contained in:
Evgeny Egorochkin 2013-06-25 09:59:19 +03:00
parent 86d14a5ab2
commit f22880408e

View File

@ -724,12 +724,12 @@ fixupPhase() {
if [ -z "$dontStrip" ]; then
stripDebugList=${stripDebugList:-lib lib32 lib64 libexec bin sbin}
if [ -n "$stripDebugList" ]; then
stripDirs "$stripDebugList" "${stripDebugFlags:--S}"
stripDirs "$stripDebugList" "${stripDebugFlags:--S --enable-deterministic-archives}"
fi
stripAllList=${stripAllList:-}
if [ -n "$stripAllList" ]; then
stripDirs "$stripAllList" "${stripAllFlags:--s}"
stripDirs "$stripAllList" "${stripAllFlags:--s --enable-deterministic-archives}"
fi
fi