Change 11383 by nick@camel-linux on 2001/07/16 13:53:12
Subject: [PATCH hints/darwin.sh] Don't override user-specified optimize flag
From: Robin Houston <[EMAIL PROTECTED]>
Date: Sun, 15 Jul 2001 18:22:31 +0100
Message-Id: <20010715182230.A11174@robin>
Affected files ...
... //depot/perl/hints/darwin.sh#11 edit
Differences ...
==== //depot/perl/hints/darwin.sh#11 (text) ====
Index: perl/hints/darwin.sh
--- perl/hints/darwin.sh.~1~ Mon Jul 16 08:00:06 2001
+++ perl/hints/darwin.sh Mon Jul 16 08:00:06 2001
@@ -41,7 +41,9 @@
#libc='/usr/lib/libSystem.dylib';
# Optimize.
-optimize='-O3';
+if [ "x$optimize" = 'x' ]; then
+ optimize='-O3'
+fi
# XXX Unclear why we require -pipe and -fno-common here.
ccflags="${ccflags} -pipe -fno-common"
End of Patch.