diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-14 07:27:48 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-14 07:27:48 +0000 |
commit | 7887418ddb1962d807c04b411c69536d30496108 (patch) | |
tree | 3ab603fdb9e4066208383440b722e8459349f200 /shells/bash2/files | |
parent | 4e054ec5d4be10bd6e775ddc61f1d70e59e10eb2 (diff) | |
download | FreeBSD-ports-7887418ddb1962d807c04b411c69536d30496108.zip FreeBSD-ports-7887418ddb1962d807c04b411c69536d30496108.tar.gz |
This patch was reversed. Fix it.
Diffstat (limited to 'shells/bash2/files')
-rw-r--r-- | shells/bash2/files/patch-ab | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shells/bash2/files/patch-ab b/shells/bash2/files/patch-ab index 5f44d68..b3851b1 100644 --- a/shells/bash2/files/patch-ab +++ b/shells/bash2/files/patch-ab @@ -1,13 +1,13 @@ -*** cpp-Makefile Thu Sep 29 05:00:51 1994 ---- cpp-Makefile.orig Tue Jul 19 14:02:14 1994 +*** cpp-Makefile.orig Thu Sep 29 05:00:51 1994 +--- cpp-Makefile Tue Jul 19 14:02:14 1994 *************** *** 136,144 **** /* This is guaranteed to work, even if you have the fixed includes! (Unless, of course, you have the fixed include files installed in /usr/include. Then it will break.) */ -! CC = cc -traditional -I/usr/include $(GCC_EXTRAS) +! CC = gcc -traditional -I/usr/include $(GCC_EXTRAS) # else /* HAVE_FIXED_INCLUDES */ -! CC = cc $(GCC_EXTRAS) +! CC = gcc $(GCC_EXTRAS) # endif /* HAVE_FIXED_INCLUDES */ #else /* !HAVE_GCC */ CC = CPP_CC @@ -15,9 +15,9 @@ /* This is guaranteed to work, even if you have the fixed includes! (Unless, of course, you have the fixed include files installed in /usr/include. Then it will break.) */ -! CC = gcc -traditional -I/usr/include $(GCC_EXTRAS) +! CC = cc -traditional -I/usr/include $(GCC_EXTRAS) # else /* HAVE_FIXED_INCLUDES */ -! CC = gcc $(GCC_EXTRAS) +! CC = cc $(GCC_EXTRAS) # endif /* HAVE_FIXED_INCLUDES */ #else /* !HAVE_GCC */ CC = CPP_CC @@ -26,7 +26,7 @@ Program = bash /**/# The type of machine and OS Bash is being compiled on. -! HOSTTYPE_DECL = -DHOSTTYPE='"$(SYSTEM_NAME)"' -DOSTYPE='"$(OS_NAME)"' +! HOSTTYPE_DECL = -DHOSTTYPE='$(SYSTEM_NAME)' -DOSTYPE='$(OS_NAME)' MAINTAIN_DEFINE = -DMAINTAINER='"bug-bash@prep.ai.mit.edu"' @@ -34,7 +34,7 @@ Program = bash /**/# The type of machine and OS Bash is being compiled on. -! HOSTTYPE_DECL = -DHOSTTYPE='$(SYSTEM_NAME)' -DOSTYPE='$(OS_NAME)' +! HOSTTYPE_DECL = -DHOSTTYPE='"$(SYSTEM_NAME)"' -DOSTYPE='"$(OS_NAME)"' MAINTAIN_DEFINE = -DMAINTAINER='"bug-bash@prep.ai.mit.edu"' |