summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2012-12-17 19:17:10 +0000
committerache <ache@FreeBSD.org>2012-12-17 19:17:10 +0000
commita825511a0fec7c1006ea0fa8612d31c374251617 (patch)
tree35ead1ab89ca1e1e35e5c0deb854155e7576083e /gnu
parent001d436ac8ac6335067eec4dbf8212d0352ac8f3 (diff)
downloadFreeBSD-src-a825511a0fec7c1006ea0fa8612d31c374251617.zip
FreeBSD-src-a825511a0fec7c1006ea0fa8612d31c374251617.tar.gz
Fix:
line 11: Malformed conditional (${TARGET} == "arm" || ${TARGET_ARCH} == "powerpc64")
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/as/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/as/Makefile b/gnu/usr.bin/binutils/as/Makefile
index 17a3e19..a27fed3 100644
--- a/gnu/usr.bin/binutils/as/Makefile
+++ b/gnu/usr.bin/binutils/as/Makefile
@@ -8,7 +8,7 @@
.PATH: ${SRCDIR}/gas ${SRCDIR}/gas/config
-.if ${TARGET} == "arm" || ${TARGET_ARCH} == "powerpc64"
+.if ${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "powerpc64"
NO_WERROR.clang=
.endif
OpenPOWER on IntegriCloud