summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorseb <seb>2001-12-19 00:14:31 +0000
committerseb <seb>2001-12-19 00:14:31 +0000
commit63204b119727d418656bf40e43cdb5a016fdee07 (patch)
tree1e6b4e1866785017ac42444919ca1f646e725538 /sysutils
parent2cc0ce35e60242a68a65b71a5341c76c42788fe1 (diff)
downloadpkgsrc-63204b119727d418656bf40e43cdb5a016fdee07.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')
-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"