From: joey Date: Mon, 17 Apr 2000 22:17:10 +0000 (+0000) Subject: r345: * examples/rules.multi2: binary-indep and binary-arch targets need to X-Git-Tag: version_2.0.101~254 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=80bbc454e4bedfdc8c9ca58e87f05ca288342945;p=debhelper.git r345: * examples/rules.multi2: binary-indep and binary-arch targets need to depend on the build and install targets. --- diff --git a/debian/changelog b/debian/changelog index a8b7c62..dc388f6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/examples/rules.multi2 b/examples/rules.multi2 index c11fcd4..02ea27d 100755 --- a/examples/rules.multi2 +++ b/examples/rules.multi2 @@ -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.