aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Lindström <henrik@lxm.se>2024-04-28 18:12:24 +0200
committerGavin D. Howard <gavin@gavinhoward.com>2024-04-29 19:57:03 -0600
commit59cf3b86eb4cafb6d7aa164d988a8c14c287e7f8 (patch)
treef8201c9b1bc15bba979494e0899b4ee2d0bba794
parent3278daef0079c20ccaed3a8666457c531dbe576b (diff)
downloadbc-59cf3b86eb4cafb6d7aa164d988a8c14c287e7f8.tar.gz
Make configure.sh posix compliant
-rwxr-xr-xconfigure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.sh b/configure.sh
index 3bc94a21..43bb502e 100755
--- a/configure.sh
+++ b/configure.sh
@@ -1690,7 +1690,7 @@ else
fi
# We can't use the linker's strip flag on macOS.
-if [ "$debug" -eq 0 ] && [ "$apple" == "" ] && [ "$strip_bin" -ne 0 ]; then
+if [ "$debug" -eq 0 ] && [ "$apple" = "" ] && [ "$strip_bin" -ne 0 ]; then
LDFLAGS="-s $LDFLAGS"
fi