svn commit: r244362 - head/gnu/usr.bin/binutils/as
Andrey A. Chernov
ache at FreeBSD.org
Mon Dec 17 19:17:10 UTC 2012
Author: ache
Date: Mon Dec 17 19:17:10 2012
New Revision: 244362
URL: http://svnweb.freebsd.org/changeset/base/244362
Log:
Fix:
line 11: Malformed conditional
(${TARGET} == "arm" || ${TARGET_ARCH} == "powerpc64")
Modified:
head/gnu/usr.bin/binutils/as/Makefile
Modified: head/gnu/usr.bin/binutils/as/Makefile
==============================================================================
--- head/gnu/usr.bin/binutils/as/Makefile Mon Dec 17 19:00:52 2012 (r244361)
+++ head/gnu/usr.bin/binutils/as/Makefile Mon Dec 17 19:17:10 2012 (r244362)
@@ -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
More information about the svn-src-all
mailing list