The following commit has been merged in the master branch:
commit 73b3b7ca73580fb1eb83bf98ca28921b365a46bd
Author: Stephen M. Webb <[email protected]>
Date:   Sat Jan 14 10:37:42 2012 -0500

    made dh_strip rule generic

diff --git a/debian/rules b/debian/rules
index 1a7b36c..316e02f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,11 +1,15 @@
 #!/usr/bin/make -f
 
 %:
-       dh $@
+       dh $@ --parallel
 
 override_dh_install:
        dh_install --fail-missing -X.la -X.a
 
 override_dh_strip:
-       dh_strip --dbg-package=libvarconf-1.0-7-dbg
+       set -e; \
+       for pkg in $(patsubst %-dbg,%,$(filter %-dbg,$(shell 
dh_listpackages))); do \
+               dh_strip -p$${pkg} --dbg-package=$${pkg}-dbg; \
+       done
+       dh_strip -s --remaining-packages
 

-- 
WorldForge configuration library

_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to