diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-01-29 07:32:45 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-01-29 07:32:45 +0000 |
commit | 309228f2b17eaa24bfe8c3b2d05d8a1f4c65d6ee (patch) | |
tree | fe8d9dc4f5b3f3f2e24012901b2d4c0a63a7a1df /editors | |
parent | 0c881ba59c8c71fcb05c5e8533adb53ce0316269 (diff) |
. 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
Notes
Notes:
svn path=/head/; revision=99361
Diffstat (limited to 'editors')
-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 |