diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
commit | 0d98f1227110082e9e507ca236458f6c363e25b6 (patch) | |
tree | 297f74782436a0f973b6b89d60c10f399af9a135 /shells/bash1/files/patch-ab | |
parent | Remove comment about not being able to undefine a variable, as we *can* (diff) |
This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'.release/2.0.5a
Diffstat (limited to 'shells/bash1/files/patch-ab')
-rw-r--r-- | shells/bash1/files/patch-ab | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/shells/bash1/files/patch-ab b/shells/bash1/files/patch-ab deleted file mode 100644 index d41ffcfd88cd..000000000000 --- a/shells/bash1/files/patch-ab +++ /dev/null @@ -1,56 +0,0 @@ -*** cpp-Makefile.orig Tue Jan 31 00:48:36 1995 ---- cpp-Makefile Fri Mar 17 03:24:29 1995 -*************** -*** 138,144 **** ---- 138,148 ---- - /usr/include. Then it will break.) */ - CC = gcc -traditional -I/usr/include $(GCC_EXTRAS) - # else /* HAVE_FIXED_INCLUDES */ -+ #ifdef __FreeBSD__ -+ CC += $(GCC_EXTRAS) -+ #else - CC = gcc $(GCC_EXTRAS) -+ #endif - # endif /* HAVE_FIXED_INCLUDES */ - #else /* !HAVE_GCC */ - CC = CPP_CC -*************** -*** 155,162 **** ---- 159,171 ---- - RM = rm -f - AR = ar - -+ #ifndef __FreeBSD__ - INSTALL_PROGRAM = install -c - INSTALL_DATA = install -c -m 644 -+ #else -+ INSTALL_PROGRAM = install -c -o bin -g bin -m 555 -+ INSTALL_DATA = install -c -o bin -g bin -m 644 -+ #endif - - COMPRESS = gzip - COMPRESS_EXT = .gz -*************** -*** 304,310 **** ---- 313,321 ---- - /**/# The GNU coding standards don't recognize the possibility that - /**/# other information besides optimization and debugging might be - /**/# passed to cc. A different name should have been used. -+ #ifndef __FreeBSD__ - CFLAGS = -O -g -+ #endif - - SYSTEM_FLAGS = $(LINEBUF) $(VPRINTF) $(UNISTD) $(STDLIB) $(LIMITSH) \ - $(GROUPS) $(RESOURCE) $(PARAM) $(SIGHANDLER) $(SYSDEP) $(WAITH) \ -*************** -*** 312,317 **** ---- 323,331 ---- - $(VARARGSH) $(STRCHR) $(STRCASE) $(DEVFD) \ - -D$(Machine) -D$(OS) - LDFLAGS = $(NOSHARE) $(SYSDEP_LD) $(EXTRA_LD_PATH) $(PROFILE_FLAGS) $(CFLAGS) -+ #ifdef __FreeBSD__ -+ LDFLAGS += -s -+ #endif - CCFLAGS = $(PROFILE_FLAGS) $(SYSTEM_FLAGS) -DSHELL $(ALLOCA_CFLAGS) \ - $(MALLOC_CFLAGS) $(CFLAGS) - CPPFLAGS= -I. -I$(srcdir) -I$(LIBSRC) |