Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Dec 2012 19:17:10 +0000 (UTC)
From:      "Andrey A. Chernov" <ache@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244362 - head/gnu/usr.bin/binutils/as
Message-ID:  <201212171917.qBHJHAop049608@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212171917.qBHJHAop049608>