From 1ba4a8d31023d3ab6e0954c6f8fc805968c7af0e Mon Sep 17 00:00:00 2001 From: hubertf Date: Mon, 9 Feb 1998 00:09:25 +0000 Subject: Fix stripping of binaries (caused by fixing PR4884) --- shells/scsh/patches/patch-aa | 88 ++++++++++++++++++++++++-------------------- 1 file changed, 49 insertions(+), 39 deletions(-) (limited to 'shells/scsh/patches') diff --git a/shells/scsh/patches/patch-aa b/shells/scsh/patches/patch-aa index 22f97bee64e..3cea328180d 100644 --- a/shells/scsh/patches/patch-aa +++ b/shells/scsh/patches/patch-aa @@ -1,39 +1,49 @@ -*** Makefile.in.original Tue Nov 26 14:44:19 1996 ---- Makefile.in Thu Nov 28 15:29:24 1996 -*************** -*** 137,143 **** - - # The following is the first rule and therefore the "make" command's - # default target. -! enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) .notify - - # The developers are curious to know. Don't be concerned if this fails. - # You may comment these lines out if you wish to be discourteous. ---- 137,143 ---- - - # The following is the first rule and therefore the "make" command's - # default target. -! enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) - - # The developers are curious to know. Don't be concerned if this fails. - # You may comment these lines out if you wish to be discourteous. -*************** -*** 250,255 **** ---- 250,256 ---- - $(RM) -r $(LIB).old - if [ -d $(LIB) ] ; then mv $(LIB) $(LIB).old ; fi - mkdir $(LIB) -+ mkdir $(LIB)/emacs - mkdir $(LIB)/big - mkdir $(LIB)/cig - mkdir $(LIB)/doc -*************** -*** 286,291 **** ---- 287,293 ---- - $(LIB)/misc $(LIB)/link $(LIB)/vm $(LIB)/doc - for f in $(srcdir)/rts/*num.scm; \ - do $(INSTALL_DATA) $$f $(LIB)/rts/; done -+ for f in $(srcdir)/emacs/*; do $(INSTALL_DATA) $$f $(LIB)/emacs/; done - for f in $(srcdir)/env/*.scm; do $(INSTALL_DATA) $$f $(LIB)/env/; done - for f in $(srcdir)/big/*.scm; do $(INSTALL_DATA) $$f $(LIB)/big/; done - for f in $(srcdir)/opt/*.scm; do $(INSTALL_DATA) $$f $(LIB)/opt/; done +--- Makefile.in.orig Mon Jun 9 03:46:05 1997 ++++ Makefile.in Sat Feb 7 22:31:02 1998 +@@ -139,7 +139,7 @@ + + # The following is the first rule and therefore the "make" command's + # default target. +-enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) .notify ++enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) + + # The developers are curious to know. Don't be concerned if this fails. + # You may comment these lines out if you wish to be discourteous. +@@ -252,6 +252,7 @@ + $(RM) -r $(LIB).old + if [ -d $(LIB) ] ; then mv $(LIB) $(LIB).old ; fi + mkdir $(LIB) ++ mkdir $(LIB)/emacs + mkdir $(LIB)/big + mkdir $(LIB)/cig + mkdir $(LIB)/doc +@@ -279,8 +280,8 @@ + $(INSTALL_DATA) $(srcdir)/scheme48.h $(incdir)/ + + install-cig: cig +- $(INSTALL_PROGRAM) $(srcdir)/$(CIG) $(LIB)/cig +- $(INSTALL_PROGRAM) $(srcdir)/$(CIG).image $(LIB)/cig ++ $(INSTALL_SCRIPT) $(srcdir)/$(CIG) $(LIB)/cig ++ $(INSTALL_SCRIPT) $(srcdir)/$(CIG).image $(LIB)/cig + $(INSTALL_DATA) $(srcdir)/$(LIBCIG) $(LIB)/cig + $(INSTALL_DATA) $(srcdir)/cig/libcig.h $(LIB)/cig + +@@ -288,6 +289,7 @@ + $(LIB)/misc $(LIB)/link $(LIB)/vm $(LIB)/doc + for f in $(srcdir)/rts/*num.scm; \ + do $(INSTALL_DATA) $$f $(LIB)/rts/; done ++ for f in $(srcdir)/emacs/*; do $(INSTALL_DATA) $$f $(LIB)/emacs/; done + for f in $(srcdir)/env/*.scm; do $(INSTALL_DATA) $$f $(LIB)/env/; done + for f in $(srcdir)/big/*.scm; do $(INSTALL_DATA) $$f $(LIB)/big/; done + for f in $(srcdir)/opt/*.scm; do $(INSTALL_DATA) $$f $(LIB)/opt/; done +@@ -676,8 +678,8 @@ + install-scsh: scsh + $(RM) $(bindir)/$(RUNNABLE) + $(INSTALL_PROGRAM) $(srcdir)/scsh/scsh $(bindir)/$(RUNNABLE) +- $(INSTALL_PROGRAM) $(srcdir)/scsh/scsh.image $(LIB)/scsh.image +- $(INSTALL_PROGRAM) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH) ++ $(INSTALL_SCRIPT) $(srcdir)/scsh/scsh.image $(LIB)/scsh.image ++ $(INSTALL_DATA) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH) + $(RANLIB) $(libdir)/$(LIBSCSH) + for f in $(srcdir)/scsh/*.scm; \ + do $(INSTALL_DATA) $$f $(LIB)/scsh/; done -- cgit v1.2.3