tags 831955 + patch
thanks

This happens because debian/rules has its binary-arch and binary-indep
targets swapped.

The following trivial (but untested) patch might fix it.

Note: The patch also fixes the non-standard binary-arch-indep target name.

Thanks.
--- a/debian/rules
+++ b/debian/rules
@@ -28,14 +28,12 @@ install: build
        dh_installdirs
 
 
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
+# Build architecture-dependent files here.
 binary-arch:
+# We have nothing to do by default.
 
-# Build architecture-dependent files here.
-binary-arch-indep: build install
+# Build architecture-independent files here.
+binary-indep: build install
        dh_testdir
        dh_testroot
        dh_installdocs
@@ -48,5 +46,5 @@ binary-arch-indep: build install
        dh_md5sums
        dh_builddeb
 
-binary: binary-indep binary-arch-indep
-.PHONY: build clean binary-indep binary-arch-indep binary install configure
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Reply via email to