diff options
author | glewis <glewis@FreeBSD.org> | 2004-01-29 15:32:45 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-01-29 15:32:45 +0800 |
commit | 733873053c6d28e73d85f9596450c39282e10239 (patch) | |
tree | 02b008e271060ee082cf4ec3d6b6e964e28ca95e /editors/bed | |
parent | 6a12ba5ef35b1ee6d77dc1ddfaab71d27d03b652 (diff) | |
download | freebsd-ports-gnome-733873053c6d28e73d85f9596450c39282e10239.tar.gz freebsd-ports-gnome-733873053c6d28e73d85f9596450c39282e10239.tar.zst freebsd-ports-gnome-733873053c6d28e73d85f9596450c39282e10239.zip |
. Don't allow -O3 to be hardwired into CFLAGS, just use what is set. In
particular, the 4.x/alpha system gcc produces many warnings about why
using -O3 with it is bad.
Submitted by: bento
Diffstat (limited to 'editors/bed')
-rw-r--r-- | editors/bed/files/patch-src::Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editors/bed/files/patch-src::Makefile b/editors/bed/files/patch-src::Makefile new file mode 100644 index 000000000000..cd6f14274cac --- /dev/null +++ b/editors/bed/files/patch-src::Makefile @@ -0,0 +1,15 @@ +$FreeBSD$ + +--- src/Makefile.orig Wed Jan 28 23:50:02 2004 ++++ src/Makefile Wed Jan 28 23:51:41 2004 +@@ -27,8 +27,8 @@ + + #-DENDOFLINEBUG + +-CFLAGS:=$(OPTS) $(CFLAGS) +-LDFLAGS:=$(OPTS) $(LDFLAGS) ++CFLAGS:=$(CFLAGS) ++LDFLAGS:=$(LDFLAGS) + CPPFLAGS=$(CFLAGS) + # *** NORMALLY NOTHING HAS TO BE CHANGED BELOW THIS LINE + OBJ := repeat.o rbtree.o memory.o editor.o getfile.o glob.o expandfilename.o readcolors.o getfree.o getlabel.o screenpart.o marks.o digitstring.o parts.o main.o strtoint.o keyproc.o marken.o procview.o menus.o inout.o move.o window.o edit.o file.o select.o undo.o screen.o search.o onlykey.o editup.o cursesinit.o input.o contain.o withcontain.o filter.o ascii.o multidigit.o macros.o editmacros.o typelist.o $(OBJ) keyinput.o hassub.o savedatatype.o menufuncs.o support.o desturbe.o gethelp.o disk.o |