summaryrefslogtreecommitdiff
path: root/shells/scsh/patches
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>1998-02-09 00:09:25 +0000
committerhubertf <hubertf@pkgsrc.org>1998-02-09 00:09:25 +0000
commit1ba4a8d31023d3ab6e0954c6f8fc805968c7af0e (patch)
tree78a7fa4980cbe246cee22c8e0be9206a4e994a14 /shells/scsh/patches
parenta1df2b782434c08282832985e9c18b9d76a92365 (diff)
downloadpkgsrc-1ba4a8d31023d3ab6e0954c6f8fc805968c7af0e.tar.gz
Fix stripping of binaries (caused by fixing PR4884)
Diffstat (limited to 'shells/scsh/patches')
-rw-r--r--shells/scsh/patches/patch-aa88
1 files changed, 49 insertions, 39 deletions
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