diff options
author | fredb <fredb@pkgsrc.org> | 2001-02-06 03:16:56 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2001-02-06 03:16:56 +0000 |
commit | 46a9e2c3deff78a7fc2cd8231e64cfb4668e94b6 (patch) | |
tree | fc373d0dc8bbedf2209b780336196ea2dcb03607 /games/quake6 | |
parent | 4098571c142a5138bd2050f5de264cb566152287 (diff) | |
download | pkgsrc-46a9e2c3deff78a7fc2cd8231e64cfb4668e94b6.tar.gz |
Make that "autoreconf" -- there is no "autoremake".
Diffstat (limited to 'games/quake6')
-rw-r--r-- | games/quake6/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games/quake6/Makefile b/games/quake6/Makefile index 435ee1f0a83..55997ec8388 100644 --- a/games/quake6/Makefile +++ b/games/quake6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/02/05 09:00:56 tron Exp $ +# $NetBSD: Makefile,v 1.10 2001/02/06 03:16:57 fredb Exp $ DISTNAME= quake-v6-bsd-kame PKGNAME= quake6-0.0 @@ -13,13 +13,13 @@ MAINTAINER= itojun@kame.net HOMEPAGE= http://www.viagenie.qc.ca/en/ipv6-quake.shtml DEPENDS= quakedata-*:../../games/quakedata -BUILD_DEPENDS= ${LOCALBASE}/bin/autoremake:../../devel/autoconf +BUILD_DEPENDS= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf WRKSRC= ${WRKDIR}/quakeforge post-extract: - (cd ${WRKSRC}; ${FIND} . -name \*.o -exec ${RM} {} \;) - (cd ${WRKSRC}; ${RM} config.cache) + cd ${WRKSRC}; ${FIND} . -name \*.o -exec ${RM} {} \; + cd ${WRKSRC}; ${RM} config.cache USE_GMAKE= yes USE_X11= yes @@ -36,6 +36,6 @@ IGNORE= "${PKGNAME} requires IPv6 support" CONFIGURE_ARGS+=--disable-asmopt --bindir=/bin post-patch: - (cd ${WRKSRC}; autoreconf) + cd ${WRKSRC}; autoreconf .include "../../mk/bsd.pkg.mk" |