1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix typo that caused compilation error on ia64 and fix a comment.

Reported by:	pointyhat via kris
Submitted by:	Alejandro Pulver (maintainer)
This commit is contained in:
Dejan Lesjak 2005-07-30 17:48:41 +00:00
parent a5ac9de8fc
commit 6e4ad3455b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140484

View File

@ -36,7 +36,7 @@ do-install:
BADCFLAGS+= -malign-double
.endif
.if ${ARCH} != "amd64" && ${ARCH} != "ia64"
.if ${ARCH} != "amd64" && ${ARCH} != "i386"
BADCFLAGS+= -maccumulate-outgoing-args \
-minline-all-stringops \
-mno-align-stringops
@ -53,8 +53,10 @@ post-patch:
s|\./exmars|exmars|' \
${WRKSRC}/bench.sh
# Enable/disable compilation optimizations
# Fix Makefile
@${REINPLACE_CMD} -e 's|\($${OPT}\)|${CFLAGS} \1|' ${WRKSRC}/${MAKEFILE}
# Enable/disable compilation optimizations
.if !defined(WITH_OPTIMIZED_CFLAGS) || ${OSVERSION} < 500035
@${REINPLACE_CMD} -e 's|$${OPT}||' ${WRKSRC}/${MAKEFILE}
.endif