Add required binary-indep make target
authorEmmanuel Lacour <elacour@easter-eggs.com>
Wed, 19 Aug 2009 07:50:24 +0000 (09:50 +0200)
committerEmmanuel Lacour <elacour@easter-eggs.com>
Wed, 19 Aug 2009 07:50:24 +0000 (09:50 +0200)
debian/rules

index 68d68f4..c0d750f 100755 (executable)
@@ -64,6 +64,10 @@ install: build
        $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
        dh_movefiles
 
        $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
        dh_movefiles
 
+# Build architecture-independent files here.
+binary-indep: 
+# We have nothing to do by default.
+
 # Build architecture-dependent files here.
 binary-arch: build install
        dh_testdir
 # Build architecture-dependent files here.
 binary-arch: build install
        dh_testdir
@@ -95,5 +99,5 @@ binary-arch: build install
        dh_md5sums
        dh_builddeb
 
        dh_md5sums
        dh_builddeb
 
-binary: binary-arch
-.PHONY: build clean binary-arch binary install configure patch
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure patch