diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2004-04-16 09:17:55 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2004-04-16 09:17:55 +0000 |
commit | 5ca65ff4b3d728a4424d9208316cb9516a1d81af (patch) | |
tree | 049f3333ed4f8218171c9613d1412faa7ae02410 /lang/gcc32 | |
parent | - Update to 0.11.48 (diff) |
- fix typo in condition.
Reported by: kris
Notes
Notes:
svn path=/head/; revision=107208
Diffstat (limited to 'lang/gcc32')
-rw-r--r-- | lang/gcc32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/gcc32/Makefile b/lang/gcc32/Makefile index 802ca3458ef7..572c09413c5a 100644 --- a/lang/gcc32/Makefile +++ b/lang/gcc32/Makefile @@ -41,7 +41,7 @@ CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .endif -.if ${ARCH} == "sparc64" || ${ARCH} == "ia64" && ${ARCH} == "amd64" +.if ${ARCH} == "sparc64" || ${ARCH} == "ia64" || ${ARCH} == "amd64" # libgcj is built on all platforms except sparc64 and ia64 and amd64 WITHOUT_LIBJAVA=yes .endif |