diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2005-05-15 15:32:14 +0000 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2005-05-15 15:32:14 +0000 |
commit | 9d2001da4c498cf95fca476f35338808599e3b8e (patch) | |
tree | 66354731b83bc157c2f189b89b8efb6b3b01e5d0 /editors/emacs | |
parent | 3ba71baac15cfb7c92259bad14d16499347924c3 (diff) | |
download | FreeBSD-ports-9d2001da4c498cf95fca476f35338808599e3b8e.zip FreeBSD-ports-9d2001da4c498cf95fca476f35338808599e3b8e.tar.gz |
Disable optimization on ia64 to avoid elisp processing errors.
Submitted by: yoichi
Diffstat (limited to 'editors/emacs')
-rw-r--r-- | editors/emacs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 91e72d9..9ec0818 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -7,7 +7,7 @@ PORTNAME= emacs PORTVERSION= 21.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -58,7 +58,7 @@ LATEST_LINK= emacs .include <bsd.port.pre.mk> .if ${ARCH} == "ia64" -CFLAGS:= ${CFLAGS:C/-O(2|3|s)/-O/g} +CFLAGS:= ${CFLAGS:C/-O.?/-O0/g} CONFIGURE_ENV= CFLAGS="${CFLAGS}" .endif |