Skip to content

Commit

Permalink
Fix:
Browse files Browse the repository at this point in the history
line 11: Malformed conditional
(${TARGET} == "arm" || ${TARGET_ARCH} == "powerpc64")
  • Loading branch information
ache authored and ache committed Dec 17, 2012
1 parent 001d436 commit a825511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnu/usr.bin/binutils/as/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a825511

Please sign in to comment.