summaryrefslogtreecommitdiff
path: root/pkgtools/autoswc
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2008-10-11 18:03:58 +0000
committerjmmv <jmmv@pkgsrc.org>2008-10-11 18:03:58 +0000
commitb5cb5e5079eeb9ef0c2b540e9f090ccba7853e38 (patch)
treebb707704090610085b85a1706d2c69fa90377c86 /pkgtools/autoswc
parent03bbe1ca721627a2cbc57603bbd8674c5c4e9e90 (diff)
downloadpkgsrc-b5cb5e5079eeb9ef0c2b540e9f090ccba7853e38.tar.gz
Fix execution of autoswc by fixing the call to AC_INIT (missing parameter).
Bump version to 1.6. Reported by Arnaud Lacombe in private email.
Diffstat (limited to 'pkgtools/autoswc')
-rw-r--r--pkgtools/autoswc/Makefile4
-rw-r--r--pkgtools/autoswc/files/autoswc.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/autoswc/Makefile b/pkgtools/autoswc/Makefile
index 0974266c5b7..f09f5590bfd 100644
--- a/pkgtools/autoswc/Makefile
+++ b/pkgtools/autoswc/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2008/06/16 15:23:05 joerg Exp $
+# $NetBSD: Makefile,v 1.16 2008/10/11 18:03:58 jmmv Exp $
-DISTNAME= autoswc-1.5
+DISTNAME= autoswc-1.6
CATEGORIES= pkgtools sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/autoswc/files/autoswc.sh b/pkgtools/autoswc/files/autoswc.sh
index 4c016c08956..2605c97fb35 100644
--- a/pkgtools/autoswc/files/autoswc.sh
+++ b/pkgtools/autoswc/files/autoswc.sh
@@ -1,6 +1,6 @@
#!@SH@
#
-# $NetBSD: autoswc.sh,v 1.2 2004/10/15 20:00:57 tv Exp $
+# $NetBSD: autoswc.sh,v 1.3 2008/10/11 18:03:58 jmmv Exp $
#
# autoswc - Generates system wide cache files for GNU autoconf
# Copyright (c) 2004 Julio M. Merino Vidal <jmmv@NetBSD.org>
@@ -119,7 +119,7 @@ cd ${wrkdir}
# - NEWS README AUTHORS ChangeLog - empty, just need to be present.
echo "# empty" >Makefile.am
-echo "AC_INIT(configure.ac)" >configure.ac
+echo "AC_INIT(configure.ac, 1)" >configure.ac
echo "AM_INIT_AUTOMAKE" >>configure.ac
cat ${confsrc} >>configure.ac
echo "AC_CACHE_SAVE" >>configure.ac