From cceca51fec3b4af660d28e2d3df7242823312eb6 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Mon, 11 Mar 2002 22:07:49 +0000 Subject: [PATCH] 1228. [bug] 'make install' did not depend on 'make all'. [RT #2559] --- CHANGES | 2 ++ make/rules.in | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 93102bab8d..8efbee309c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +1228. [bug] 'make install' did not depend on 'make all'. [RT #2559] + 1227. [bug] dns_lex_getmastertoken() now returns ISC_R_BADNUMBER if a number was expected and some other token was found. [RT#2532] diff --git a/make/rules.in b/make/rules.in index 7e99ef8cad..2edf56115c 100644 --- a/make/rules.in +++ b/make/rules.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: rules.in,v 1.41 2001/09/14 20:23:53 gson Exp $ +# $Id: rules.in,v 1.42 2002/03/11 22:07:49 bwelling Exp $ ### ### Common Makefile rules for BIND 9. @@ -70,6 +70,8 @@ subdirs: fi; \ done +install:: all + install clean distclean maintainer-clean doc docclean man manclean:: @for i in ${ALL_SUBDIRS}; do \ if [ "$$i" != "nulldir" -a -d $$i ]; then \