diff options
author | richard <richard@pkgsrc.org> | 2013-11-30 06:24:38 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2013-11-30 06:24:38 +0000 |
commit | 38ab005decd5acced3bc1ddff6344ba6143003dc (patch) | |
tree | aa878af59f9de83359f8b027262f586b4229d26a /mk | |
parent | 137d933a166aa95716606b765cd44fe214bf6d75 (diff) | |
download | pkgsrc-38ab005decd5acced3bc1ddff6344ba6143003dc.tar.gz |
include versions 1.12&1.13 to aclocal/automake
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools/automake.mk | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/mk/tools/automake.mk b/mk/tools/automake.mk index f7b48ac53e5..f7312731722 100644 --- a/mk/tools/automake.mk +++ b/mk/tools/automake.mk @@ -1,4 +1,4 @@ -# $NetBSD: automake.mk,v 1.20 2013/05/09 23:37:27 riastradh Exp $ +# $NetBSD: automake.mk,v 1.21 2013/11/30 06:24:38 richard Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -78,7 +78,8 @@ PKG_FAIL_REASON+= "\`\`automake'' and \`\`automake14'' conflict in USE_TOOLS." .endif # This is an exhaustive list of all of the scripts supplied by GNU -# automake. +# automake, up to but not including the current version as supplied +# by the automake package itself. # _TOOLS_AM_NAMES= aclocal aclocal-1.4 \ aclocal-1.5 \ @@ -87,7 +88,9 @@ _TOOLS_AM_NAMES= aclocal aclocal-1.4 \ aclocal-1.8 \ aclocal-1.9 \ aclocal-1.10 \ - aclocal-1.11 + aclocal-1.11 \ + aclocal-1.12 \ + aclocal-1.13 _TOOLS_AM_NAMES+= automake automake-1.4 \ automake-1.5 \ automake-1.6 \ @@ -95,7 +98,9 @@ _TOOLS_AM_NAMES+= automake automake-1.4 \ automake-1.8 \ automake-1.9 \ automake-1.10 \ - automake-1.11 + automake-1.11 \ + automake-1.12 \ + automake-1.13 .for _t_ in ${_TOOLS_AM_NAMES} _TOOLS_AM_TYPE.${_t_}?= TOOLS_GNU_MISSING |