diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-16 18:54:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-16 18:54:06 +0000 |
commit | f009001837c7dcaa4ec5eb9913ce6bda7cc7d30d (patch) | |
tree | 58d9e97ae2999a1eef7b29ccdb63a7631084835f /mk/tools/autoconf.mk | |
parent | f26e5cd9ac2bf6930c5f66ea2f87770dd1f2c180 (diff) | |
download | pkgsrc-f009001837c7dcaa4ec5eb9913ce6bda7cc7d30d.tar.gz |
In the autoconf213 case, the AUTO* variables should point to the
TOOLS_CMD.* variables for the -2.13 variants. Otherwise, they're
empty, which causes errors for packages that use ${AUTOCONF}.
Diffstat (limited to 'mk/tools/autoconf.mk')
-rw-r--r-- | mk/tools/autoconf.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/tools/autoconf.mk b/mk/tools/autoconf.mk index 41ba0b0d0fb..1fe1dbf2eb1 100644 --- a/mk/tools/autoconf.mk +++ b/mk/tools/autoconf.mk @@ -1,4 +1,4 @@ -# $NetBSD: autoconf.mk,v 1.6 2005/05/11 20:09:44 jlam Exp $ +# $NetBSD: autoconf.mk,v 1.7 2005/05/16 18:54:06 jlam Exp $ # # This Makefile fragment handles packages that use GNU autoconf. # @@ -139,9 +139,9 @@ TOOLS_ALIASES.ifnames-2.13= ifnames # Continue to define the following variables until packages have been # taught to just use "autoconf", "autoheader", and "autoreconf" instead. # -AUTOCONF= ${TOOLS_CMD.autoconf} -AUTOHEADER= ${TOOLS_CMD.autoheader} -AUTORECONF= ${TOOLS_CMD.autoreconf} +AUTOCONF= ${TOOLS_CMD.autoconf-2.13} +AUTOHEADER= ${TOOLS_CMD.autoheader-2.13} +AUTORECONF= ${TOOLS_CMD.autoreconf-2.13} . if defined(USE_LIBTOOL) pre-configure: tools-libtool-m4-override |