]> git.donarmstrong.com Git - debhelper.git/commitdiff
r345: * examples/rules.multi2: binary-indep and binary-arch targets need to
authorjoey <joey>
Mon, 17 Apr 2000 22:17:10 +0000 (22:17 +0000)
committerjoey <joey>
Mon, 17 Apr 2000 22:17:10 +0000 (22:17 +0000)
     depend on the build and install targets.

debian/changelog
examples/rules.multi2

index a8b7c62ec1e694e7930acb221190c6d2d6080eac..dc388f6a32234dcdd108b416c6597ba9da3cafb7 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.0.94) unstable; urgency=low
+
+  * examples/rules.multi2: binary-indep and binary-arch targets need to
+    depend on the build and install targets.
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 17 Apr 2000 15:09:26 -0700
+
 debhelper (2.0.93) unstable; urgency=low
 
   * Patch from Pedro Guerreiro to make install-docs only be called on
index c11fcd43874f5cc74a54977a1406028e59f78051..02ea27d7c17b2ace576d40834c1ff45936084833 100755 (executable)
@@ -81,12 +81,12 @@ binary-common:
        dh_builddeb
 
 # Build architecture independant packages using the common target.
-binary-indep:
+binary-indep: build install
 # (Uncomment this next line if you have such packages.)
 #       $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
 
 # Build architecture dependant packages using the common target.
-binary-arch:
+binary-arch: build install
        $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
 
 # Any other binary targets build just one binary package at a time.