Browse Source

hopefully get it right with teh if else construct

Waldemar Brodkorb 12 years ago
parent
commit
afeecde922
1 changed files with 3 additions and 1 deletions
  1. 3 1
      toolchain/gcc/Makefile

+ 3 - 1
toolchain/gcc/Makefile

@@ -61,11 +61,13 @@ endif
 
 ifeq ($(ARCH),m68k)
 GCC_CONFOPTS+=		--disable-tls
-else if ($(ARCH),cris)
+else 
+if ($(ARCH),cris)
 GCC_CONFOPTS+=		--disable-tls
 else
 GCC_CONFOPTS+=		--enable-tls
 endif
+endif
 
 ifeq ($(ARCH),powerpc)
 ifeq ($(ADK_TARGET_LIBC),musl)