ソースを参照

hopefully get it right with teh if else construct

Waldemar Brodkorb 12 年 前
コミット
afeecde922
1 ファイル変更3 行追加1 行削除
  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)