summaryrefslogtreecommitdiff
path: root/mk/automake.mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-10-03 19:36:36 +0000
committerwiz <wiz@pkgsrc.org>2002-10-03 19:36:36 +0000
commita74193347789b6fbca46a0f1c813c25dd47b5e80 (patch)
tree611e7e6f0cf6c38a8be20c00cee8ec7f852b7682 /mk/automake.mk
parentd1e6003f9442a0f264c97b1a61ace367f0e04537 (diff)
downloadpkgsrc-a74193347789b6fbca46a0f1c813c25dd47b5e80.tar.gz
Sync with new autoconf213, automake14 packages and autoconf, automake updates.
Diffstat (limited to 'mk/automake.mk')
-rw-r--r--mk/automake.mk11
1 files changed, 5 insertions, 6 deletions
diff --git a/mk/automake.mk b/mk/automake.mk
index d64abd84f1a..0a37cd7e1f6 100644
--- a/mk/automake.mk
+++ b/mk/automake.mk
@@ -1,11 +1,11 @@
-# $NetBSD: automake.mk,v 1.1 2002/10/02 18:10:16 dillo Exp $
+# $NetBSD: automake.mk,v 1.2 2002/10/03 19:36:36 wiz Exp $
#
# makefile fragment for packages that use automake
# AUTOMAKE_REQD can be set to the minimum version required.
# It adds a build dependency on the appropriate automake and autoconf
# packages and sets the following variables:
-# AUTOMAKE: automake binary to use
-# ACLOCAL: aclocal binary to use
+# AUTOMAKE: automake binary to use
+# ACLOCAL: aclocal binary to use
# autoconf required version will default to 2.13 if automake 1.4* is used,
# and to 2.50 otherwise.
#
@@ -17,18 +17,17 @@ AUTOMAKE_MK= # defined
AUTOMAKE_REQD?= 1.7
.if ${AUTOMAKE_REQD:M1.4*} == ""
-BUILD_DEPENDS+= automake>=${AUTOMAKE_REQD}:../../devel/automake-devel
+BUILD_DEPENDS+= automake>=${AUTOMAKE_REQD}:../../devel/automake
_AUTOMAKE_API_VERSION= 1.7
AUTOCONF_REQD?= 2.50
.else
-BUILD_DEPENDS+= automake>=${AUTOMAKE_REQD}:../../devel/automake
+BUILD_DEPENDS+= automake14>=${AUTOMAKE_REQD}:../../devel/automake14
_AUTOMAKE_API_VERSION= 1.4
AUTOCONF_REQD?= 2.13
.endif
AUTOMAKE= ${LOCALBASE}/bin/automake-${_AUTOMAKE_API_VERSION}
ACLOCAL= ${LOCALBASE}/bin/aclocal-${_AUTOMAKE_API_VERSION}
-#AUTOMAKE_SHAREPATH= ${LOCALBASE}/share/automake-${_AUTOMAKE_API_VERSION}
.include "../../mk/autoconf.mk"
.endif # AUTOMAKE_MK