Fix shell syntax in previous commit

This commit is contained in:
Robin Gareus 2021-01-04 05:44:52 +01:00
parent b934663c26
commit e255202c84
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ while [ true ] ; do
if test x$STRIP != x ; then
# NSS is dynamically loaded, symbols cannot be stripped
if [[ $file = "libnspr4.dylib" -o $file = "libplds4.dylib" ]] ; then
if test "$file" = "libnspr4.dylib" -o "$file" = "libplds4.dylib"; then
# only remove debug and local symbols
strip -S -x -u -r -arch all $file &>/dev/null
else