Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-02-10 03:18:29 +0300
committerKent Mein <mein@cs.umn.edu>2003-02-10 03:18:29 +0300
commit06e8de765aa89736c5e8196c423cd68ddec6ff1e (patch)
tree21a0a570528fcb247495881573cb35ca92e35f56
parent99a1f599d8c84cbeeb5bb5c56729a6b6d81feca7 (diff)
Modified ld flags on SunOS changed -O2 to -O
because sun's compiler does not support -O2. Kent
-rw-r--r--release/plugins/bmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/plugins/bmake b/release/plugins/bmake
index b25ecde08ee..6d990ad7460 100644
--- a/release/plugins/bmake
+++ b/release/plugins/bmake
@@ -66,7 +66,7 @@ elif ( test $UNAME = "Linux" ) then
LDFLAGS="-Bshareable";
elif ( test $UNAME = "SunOS" ) then
CC="cc";
- CFLAGS="-O2";
+ CFLAGS="-O";
LD="ld";
LDFLAGS="-r";