summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-08-16 10:31:24 +0000
committerrubidium <rubidium@openttd.org>2014-08-16 10:31:24 +0000
commitd60b2d04e48ffe8e4b57275c63e9c6cfec0f157a (patch)
tree49cc10406cce49103ec0279097e3aa3c14c42ecd /config.lib
parentd733c7d196fc7077b97117fc3cad7a909f737bba (diff)
downloadopenttd-d60b2d04e48ffe8e4b57275c63e9c6cfec0f157a.tar.xz
(svn r26737) -Fix (r26735): one = too many... why can't all languages use the same basic definition for comparisons?
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib
index 36fd6a384..d99acd819 100644
--- a/config.lib
+++ b/config.lib
@@ -1450,7 +1450,7 @@ make_cflags_and_ldflags() {
LDFLAGS="$LDFLAGS -noixemul"
fi
- if [ "$enable_profiling" == "0" ]; then
+ if [ "$enable_profiling" = "0" ]; then
# -fomit-frame-pointer and -pg do not go well together (gcc errors they are incompatible)
CFLAGS="-fomit-frame-pointer $CFLAGS"
fi