#! /bin/sh /usr/share/dpatch/dpatch-run
## 13upstream_shouldnt_strip.dpatch by <hesso@pool.math.tu-berlin.de>
##
## DP: Don't let the upstream Makefile do "install -s". Entrust this
## DP: to debhelper.
@DPATCH@
--- mt-st-0.9b.orig/Makefile 2007-08-20 01:18:33.000000000 +0200
+++ mt-st-0.9b/Makefile 2007-08-20 01:18:40.000000000 +0200
@@ -12,11 +12,11 @@
$(CC) $(CFLAGS) -o stinit stinit.c
install: mt stinit
- install -s mt $(MTDIR)
+ install mt $(MTDIR)
install -c -m 444 mt.1 $(MANDIR)/man1
(if [ -f $(MANDIR)/man1/mt.1.gz ] ; then \
rm -f $(MANDIR)/man1/mt.1.gz; gzip $(MANDIR)/man1/mt.1; fi)
- install -s stinit $(SBINDIR)
+ install stinit $(SBINDIR)
install -c -m 444 stinit.8 $(MANDIR)/man8
(if [ -f $(MANDIR)/man8/stinit.8.gz ] ; then \
rm -f $(MANDIR)/man8/stinit.8.gz; gzip $(MANDIR)/man8/stinit.8; fi)