diff options
author | seb <seb@pkgsrc.org> | 2004-08-23 09:33:25 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2004-08-23 09:33:25 +0000 |
commit | c04e850de68ff7c3119adf8ce5903c2dce7fee62 (patch) | |
tree | 60d79285c459d467f3ccdfac738d02612e6cff4d /mk | |
parent | 00ff3ff247e233221ec4ff5972de664dd3e9bf1a (diff) | |
download | pkgsrc-c04e850de68ff7c3119adf8ce5903c2dce7fee62.tar.gz |
Also hide automake 1.9* commands by adding their names in _HIDE_PROGS.automake.
For me this fixed the build of devel/kdevelop-base version 3.1.0 with latest
automake package version 1.9.1 installed.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/tools.mk b/mk/tools.mk index 174b6ac404d..d132fd9dc53 100644 --- a/mk/tools.mk +++ b/mk/tools.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.mk,v 1.37 2004/07/22 17:02:22 drochner Exp $ +# $NetBSD: tools.mk,v 1.38 2004/08/23 09:33:25 seb Exp $ # # This Makefile creates a ${TOOLS_DIR} directory and populates the bin # subdir with tools that hide the ones outside of ${TOOLS_DIR}. @@ -43,11 +43,13 @@ _HIDE_PROGS.automake= bin/aclocal bin/aclocal-1.4 \ bin/aclocal-1.6 \ bin/aclocal-1.7 \ bin/aclocal-1.8 \ + bin/aclocal-1.9 \ bin/automake bin/automake-1.4 \ bin/automake-1.5 \ bin/automake-1.6 \ bin/automake-1.7 \ - bin/automake-1.8 + bin/automake-1.8 \ + bin/automake-1.9 .if empty(AUTOMAKE_OVERRIDE:M[nN][oO]) _CONFIGURE_PREREQ+= override-autotools |