summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorjlam <jlam>2005-06-01 20:07:59 +0000
committerjlam <jlam>2005-06-01 20:07:59 +0000
commit6492b8f1ec8698b04f9127eecc0ef008460a9830 (patch)
tree77aa2e325b82a73660278dbb13238e6aac0adca7 /cross
parent9c65cd2dcc49b8566966aad971d48eabca98f809 (diff)
downloadpkgsrc-6492b8f1ec8698b04f9127eecc0ef008460a9830.tar.gz
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
Diffstat (limited to 'cross')
-rw-r--r--cross/COMMON/cross.mk4
-rw-r--r--cross/mipsEEel-netbsd/Makefile5
2 files changed, 5 insertions, 4 deletions
diff --git a/cross/COMMON/cross.mk b/cross/COMMON/cross.mk
index 42ae8d9b2a2..2f85eb3dcce 100644
--- a/cross/COMMON/cross.mk
+++ b/cross/COMMON/cross.mk
@@ -1,4 +1,4 @@
-# $NetBSD: cross.mk,v 1.33 2005/05/22 20:07:44 jlam Exp $
+# $NetBSD: cross.mk,v 1.34 2005/06/01 20:07:59 jlam Exp $
# Shared definitions for building a cross-compile environment.
@@ -113,7 +113,7 @@ EGCS_WRKSRC= ${WRKDIR}/${EGCS_DISTNAME}
EGCS_LANGUAGES= c # add to these below
# only using autoheader; 2.13 and 2.54 both work fine
-.include "../../mk/autoconf.mk"
+USE_TOOLS+= autoconf
.if defined(EGCS_MULTILIB)
EGCS_INSTALL_LIB=install-multilib
diff --git a/cross/mipsEEel-netbsd/Makefile b/cross/mipsEEel-netbsd/Makefile
index 741a82dbe34..8ecbc88314b 100644
--- a/cross/mipsEEel-netbsd/Makefile
+++ b/cross/mipsEEel-netbsd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2005/05/22 20:07:45 jlam Exp $
+# $NetBSD: Makefile,v 1.13 2005/06/01 20:08:00 jlam Exp $
DISTNAME= cross-${TARGET_ARCH}-${DISTVERSION}
TARGET_ARCH= mipsEEel-netbsd
@@ -104,5 +104,6 @@ gcc-install:
install-cpp lang.install-normal install-driver
# just uses autoheader -- any version is ok
-.include "../../mk/autoconf.mk"
+USE_TOOLS+= autoconf
+
.include "../../mk/bsd.pkg.mk"