[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#774438: arc: does not honour DEB_BUILD_OPTIONS=nostrip



Source: arc
Version: 5.21q-1
Tags: patch

I rebuilt the package with DEB_BUILD_OPTIONS=nostrip, but the resulting binary package was still stripped.

The attached patch seems to fix it.

--
Jakub Wilk
--- a/Makefile
+++ b/Makefile
@@ -132,8 +132,8 @@
 	rm -rf .dist
 
 install: all
-	install -s -m 0755 -D arc $(DESTDIR)$(PREFIX)/bin/arc
-	install -s -m 0755 -D marc $(DESTDIR)$(PREFIX)/bin/marc
+	install -m 0755 -D arc $(DESTDIR)$(PREFIX)/bin/arc
+	install -m 0755 -D marc $(DESTDIR)$(PREFIX)/bin/marc
 	install -m 0644 -D arc.1 $(DESTDIR)$(PREFIX)/share/man/man1/arc.1
 	install -m 0644 -D marc.1 $(DESTDIR)$(PREFIX)/share/man/man1/marc.1
 

Reply to: