diff options
author | tron <tron@pkgsrc.org> | 1999-07-18 15:19:32 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-07-18 15:19:32 +0000 |
commit | 48361d072ef2f66412b1dd3067b6ef5fa266093d (patch) | |
tree | 530b9bfdc61f6705f429517ded85b0ead5fb0eae /archivers | |
parent | d6592cafc23b4452ed8427be8ab292098cf31929 (diff) | |
download | pkgsrc-48361d072ef2f66412b1dd3067b6ef5fa266093d.tar.gz |
Don't use "NO_WRKSUBDIR" because it is supposed to be remove sooner or
later.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/unlzx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/unlzx/Makefile b/archivers/unlzx/Makefile index e92f557bdc8..348f31b4a67 100644 --- a/archivers/unlzx/Makefile +++ b/archivers/unlzx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1999/07/18 15:17:09 tron Exp $ +# $NetBSD: Makefile,v 1.3 1999/07/18 15:19:32 tron Exp $ DISTNAME= unlzx.c PKGNAME= unlzx-1.0 @@ -9,13 +9,13 @@ EXTRACT_SUFX= .Z MAINTAINER= packages@netbsd.org -NO_WRKSUBDIR= EXTRACT_CMD= ${GZCAT} ${DOWNLOADED_DISTFILE} >${DISTNAME} +WRKSRC= ${WRKDIR} do-build: cd ${WRKSRC} && ${LINK.c} -o unlzx unlzx.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/unlzx ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/unlzx ${PREFIX}/bin .include "../../mk/bsd.pkg.mk" |