diff options
author | Steve Price <steve@FreeBSD.org> | 1999-01-02 19:47:10 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-01-02 19:47:10 +0000 |
commit | b9a9901e56e4f0c9927c78a6029817a15191ec10 (patch) | |
tree | 1a0360cc6d6efde1fb726a894a17dc04b604aa8c /audio | |
parent | a6849d82c9d39c84bd6b39eb024c63756f9ad42e (diff) |
Honor CFLAGS.
PR: 9234
Submitted by: Sheldon Hearn <axl@iafrica.com>
Notes
Notes:
svn path=/head/; revision=15781
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmcd/files/patch-ae | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/audio/xmcd/files/patch-ae b/audio/xmcd/files/patch-ae new file mode 100644 index 000000000000..7b8e21cf7204 --- /dev/null +++ b/audio/xmcd/files/patch-ae @@ -0,0 +1,24 @@ +--- make.inc.orig Tue Dec 29 15:53:17 1998 ++++ make.inc Tue Dec 29 15:54:53 1998 +@@ -52,7 +52,8 @@ + RANLIB= /bin/true + AR= ar cq + RM= rm -f +-CFLAGS= -O $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) ++CFLAGS?= -O ++CFLAGS+= $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) + ARCH= -DSVR4 -Di386 + TIMER= -DUSE_SELECT + TERMIO= -DUSE_TERMIOS +--- makedgux.inc.orig Tue Dec 29 15:53:17 1998 ++++ makedgux.inc Tue Dec 29 15:55:11 1998 +@@ -52,7 +52,8 @@ + RANLIB= /bin/true + AR= ar cq + RM= rm -f +-CFLAGS= -O $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) ++CFLAGS?= -O ++CFLAGS+= $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) + # ARCH= + TIMER= -DUSE_SELECT + TERMIO= -DUSE_TERMIOS |