diff options
author | pav <pav@FreeBSD.org> | 2010-11-25 05:25:27 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2010-11-25 05:25:27 +0800 |
commit | 12a658ecc0857b1e63653bbff32fd96942c671f8 (patch) | |
tree | 0d4469d25eea814a94f11bc12814d2ecc807d84c | |
parent | 0bfdf1f8d2315e7d6d1032d3cebf96d97da8c885 (diff) | |
download | freebsd-ports-gnome-12a658ecc0857b1e63653bbff32fd96942c671f8.tar.gz freebsd-ports-gnome-12a658ecc0857b1e63653bbff32fd96942c671f8.tar.zst freebsd-ports-gnome-12a658ecc0857b1e63653bbff32fd96942c671f8.zip |
- Fix runtime error by disabling gcc optimizations
PR: ports/152499
Submitted by: Harald Hanche-Olsen <hanche@math.ntnu.no>
-rw-r--r-- | shells/es/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shells/es/Makefile b/shells/es/Makefile index 9e37bddaf8af..dcc881c691d0 100644 --- a/shells/es/Makefile +++ b/shells/es/Makefile @@ -17,6 +17,7 @@ COMMENT= An extensible shell, derived from plan9's rc GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-readline +CFLAGS:= ${CFLAGS:N-O*} ALL_TARGET= es MAN1= es.1 |