diff options
author | imp <imp@FreeBSD.org> | 2010-11-14 01:50:40 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-11-14 01:50:40 +0000 |
commit | 57c659fc8f4427dd8165ce9aa5a37ce4cb41e583 (patch) | |
tree | c957e8e2fa76a355cdecde7bdc20f028ad0139e5 | |
parent | b362a902a4f5c8fa98246c2b3880a82a8c322130 (diff) | |
download | FreeBSD-src-57c659fc8f4427dd8165ce9aa5a37ce4cb41e583.zip FreeBSD-src-57c659fc8f4427dd8165ce9aa5a37ce4cb41e583.tar.gz |
These two cases should be different...
Submitted by: nathanw@
-rw-r--r-- | gnu/lib/libgcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 73fb1be..4752400 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -140,13 +140,13 @@ LIB1ASMFUNCS = __divxf3 __divdf3 __divsf3 \ LIB2ADDEH = unwind-ia64.c unwind-sjlj.c unwind-c.c .endif -.if ${TARGET_CPUARCH} == "powerpc" +.if ${TARGET_ARCH} == "powerpc" # from config/rs6000/t-ppccomm LIB2FUNCS_EXTRA = tramp.asm LIB2FUNCS_STATIC_EXTRA = eabi.asm .endif -.if ${TARGET_CPUARCH} == "powerpc64" +.if ${TARGET_ARCH} == "powerpc64" # from config/rs6000/t-ppccomm LIB2FUNCS_EXTRA = tramp.asm .endif |