summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron>1999-07-18 15:19:32 +0000
committertron <tron>1999-07-18 15:19:32 +0000
commit23bf15bf3e32afff550c7b5e908b33060b6f24e5 (patch)
tree530b9bfdc61f6705f429517ded85b0ead5fb0eae
parentb1642a0ea7aba511fea8b1e1feed0abee6045b09 (diff)
downloadpkgsrc-23bf15bf3e32afff550c7b5e908b33060b6f24e5.tar.gz
Don't use "NO_WRKSUBDIR" because it is supposed to be remove sooner or
later.
-rw-r--r--archivers/unlzx/Makefile6
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"