diff options
author | obrien <obrien@FreeBSD.org> | 1999-11-28 11:03:45 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-11-28 11:03:45 +0800 |
commit | 2b711d4a65304f4704050a37ad8c71b7770303b0 (patch) | |
tree | 16dbb5f0ad486f21344a6ca69f9f8be6a15a3031 /shells/bash1 | |
parent | 864851c5d1fff3daea6983539f34ed1797ec90a4 (diff) | |
download | freebsd-ports-gnome-2b711d4a65304f4704050a37ad8c71b7770303b0.tar.gz freebsd-ports-gnome-2b711d4a65304f4704050a37ad8c71b7770303b0.tar.zst freebsd-ports-gnome-2b711d4a65304f4704050a37ad8c71b7770303b0.zip |
Use $(CC) -E rather than ``cpp'' to deal with cpp's new braindamage.
Diffstat (limited to 'shells/bash1')
-rw-r--r-- | shells/bash1/files/patch-aa | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/shells/bash1/files/patch-aa b/shells/bash1/files/patch-aa index 44de65ec4a75..6103b663f0c4 100644 --- a/shells/bash1/files/patch-aa +++ b/shells/bash1/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Sun Jun 11 11:41:48 1995 -+++ Makefile Wed Aug 13 00:41:35 1997 ++++ Makefile Sat Nov 27 19:01:13 1999 @@ -10,7 +10,7 @@ # If you haven't read README, now might be a good time. @@ -9,3 +9,12 @@ exec_prefix = $(prefix) bindir = $(exec_prefix)/bin srcdir = . +@@ -25,7 +25,7 @@ + # Force CPPNAME to be the name of your C preprocesor if Bash can't + # find it. For instance, `CPPNAME=/usr/libexec/cpp' on 4.4 BSD. + # If all else fails, set CPPNAME=$(CC) -E +-CPPNAME = ++CPPNAME = $(CC) -E + CPP = `$(SHELL) $(CPPMAGIC) $(GETCPPSYMS) "$(CPPNAME)"` -P + + CPP_MAKEFILE = $(srcdir)/cpp-Makefile |