diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2004-03-30 06:44:53 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2004-03-30 06:44:53 +0000 |
commit | dde52045b8142ff3c73ab5f92a5342e8b61a2047 (patch) | |
tree | f92e70a53425471aaa26e0af438a600ac834ae5d | |
parent | ca0edf2de6e39fa60b1693040de9569f01a4e220 (diff) | |
download | pkgsrc-dde52045b8142ff3c73ab5f92a5342e8b61a2047.tar.gz |
* PKGNAME_NOREV for WRKSRC.
* Remove useless use of subshell.
-rw-r--r-- | archivers/upx/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/upx/Makefile b/archivers/upx/Makefile index 5b0c6b4fae2..d6c18a98246 100644 --- a/archivers/upx/Makefile +++ b/archivers/upx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2004/01/22 07:18:44 grant Exp $ +# $NetBSD: Makefile,v 1.4 2004/03/30 06:44:53 uebayasi Exp $ DISTNAME= upx-1.24-src PKGNAME= ${DISTNAME:S/-src//} @@ -11,14 +11,14 @@ COMMENT= Ultimate packer for executables DEPENDS+= ucl>=1.01:../../devel/ucl -WRKSRC= ${WRKDIR}/${PKGNAME} +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} USE_GNU_TOOLS+= make USE_PERL5= build do-build: - (cd ${WRKSRC}/src && ${GMAKE} PREFIX=${PREFIX} target=netbsd) - (cd ${WRKSRC}/doc && ${GMAKE}) + cd ${WRKSRC}/src && ${GMAKE} PREFIX=${PREFIX} target=netbsd + cd ${WRKSRC}/doc && ${GMAKE} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/upx ${PREFIX}/bin |