소스 검색

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)