From e255202c8428b269ea1a3f94b89599c411516357 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 4 Jan 2021 05:44:52 +0100 Subject: [PATCH] Fix shell syntax in previous commit --- tools/osx_packaging/osx_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index 1da8c1a860..d00fda1108 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -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