Changeset - r21607:ceab5dcb3e08
[Not reviewed]
master
0 1 0
rubidium - 10 years ago 2014-08-16 10:31:24
rubidium@openttd.org
(svn r26737) -Fix (r26735): one = too many... why can't all languages use the same basic definition for comparisons?
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -1447,13 +1447,13 @@ make_cflags_and_ldflags() {
 
		OBJS_SUBDIR="release"
 
		if [ "$os" = "MORPHOS" ]; then
 
			CFLAGS="-I/gg/os-include -noixemul -fstrict-aliasing -fexpensive-optimizations -mcpu=604 -fno-inline -mstring -mmultiple $CFLAGS"
 
			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
 
		CFLAGS="-O2 $CFLAGS"
 
	else
 
		OBJS_SUBDIR="debug"
0 comments (0 inline, 0 general)