summaryrefslogtreecommitdiff
path: root/sysutils/fileutils
diff options
context:
space:
mode:
authorseb <seb@pkgsrc.org>2001-12-19 00:14:31 +0000
committerseb <seb@pkgsrc.org>2001-12-19 00:14:31 +0000
commit93f3accdc44668107210456ca54f4004965577f0 (patch)
tree1e6b4e1866785017ac42444919ca1f646e725538 /sysutils/fileutils
parent9efcd64075c222100ceb74e2479d5f24a4c213a9 (diff)
downloadpkgsrc-93f3accdc44668107210456ca54f4004965577f0.tar.gz
Make this package's build working again after AUTOMAKE_OVERRIDE became
the default: *.in files are touched , unfortunately fileutils-4.0/m4/Makefile.am is generated from fileutils-4.0/m4/Makefile.am.in, as is this leads to in the Makefile.am being regenerated (with GNU make required) and GNU "auto*" being invoked. Added a touch in a new post-configure target to overcome this situation, as _AUTOMAKE_PATTERNS_FIND is out of reach.
Diffstat (limited to 'sysutils/fileutils')
-rw-r--r--sysutils/fileutils/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/fileutils/Makefile b/sysutils/fileutils/Makefile
index 12c6824ac39..31df5ebb0ec 100644
--- a/sysutils/fileutils/Makefile
+++ b/sysutils/fileutils/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2001/02/26 19:47:43 tron Exp $
+# $NetBSD: Makefile,v 1.14 2001/12/19 00:14:31 seb Exp $
DISTNAME= fileutils-4.0
CATEGORIES= sysutils
@@ -13,4 +13,8 @@ NO_PATCH= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --program-prefix=g
+post-configure:
+ @${TOUCH} ${WRKSRC}/m4/Makefile.am ${WRKSRC}/m4/Makefile.in \
+ ${WRKSRC}/m4/Makefile
+
.include "../../mk/bsd.pkg.mk"