diff options
author | seb <seb> | 2001-12-19 00:14:31 +0000 |
---|---|---|
committer | seb <seb> | 2001-12-19 00:14:31 +0000 |
commit | 127f1af6803a28e267c946bb350ddb2df2199a35 (patch) | |
tree | 1e6b4e1866785017ac42444919ca1f646e725538 /sysutils | |
parent | afc5fd33dbb7ebc6cd7a56ab42c923248418bc98 (diff) | |
download | pkgsrc-127f1af6803a28e267c946bb350ddb2df2199a35.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/Makefile | 6 |
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" |