Source: pipemeter
Version: 1.1.3-1
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

pipemeter fails to cross build from source, because it strips with the
build architecture strip. Beyond breaking cross compilation, stripping
at make install time also breaks DEB_BUILD_OPTIONS=nostrip and
generating a useful -dbgsym package. The attached patch drops the -s
flag from the install invocation. Please consider applying it.

Helmut
--- pipemeter-1.1.3.orig/Makefile.in
+++ pipemeter-1.1.3/Makefile.in
@@ -24,7 +24,7 @@
 	
 
 install: pipemeter pipemeter.1
-	install -D -p -s pipemeter $(DESTDIR)${PREFIX}/bin/pipemeter
+	install -D -p pipemeter $(DESTDIR)${PREFIX}/bin/pipemeter
 	install -D -p pipemeter.1 $(DESTDIR)${PREFIX}/share/man/man1/pipemeter.1
 
 dist: pipemeter

Reply via email to