diff options
author | plunky <plunky@pkgsrc.org> | 2019-01-31 16:33:15 +0000 |
---|---|---|
committer | plunky <plunky@pkgsrc.org> | 2019-01-31 16:33:15 +0000 |
commit | cdb73be187466b4e21274e7929a009e2efdf38bc (patch) | |
tree | 3cd4ee54d88042816daabc98524a233e1f9397a6 | |
parent | e29d5766b478caddf748152841a2cbee03f595ac (diff) | |
download | pkgsrc-cdb73be187466b4e21274e7929a009e2efdf38bc.tar.gz |
fix pkglint warning (using && instead of ; to separate commands)
no functional change
-rw-r--r-- | print/pslib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/pslib/Makefile b/print/pslib/Makefile index 64da98014e0..84ee9b1f50b 100644 --- a/print/pslib/Makefile +++ b/print/pslib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2018/08/22 09:46:15 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2019/01/31 16:33:15 plunky Exp $ # DISTNAME= pslib-0.4.5 @@ -21,10 +21,10 @@ USE_TOOLS+= msgfmt perl gmake # share/locale/de/LC_MESSAGES/pslib.mo is missing without these post-build: - (cd ${WRKSRC}/po; ${GMAKE}) + cd ${WRKSRC}/po && ${GMAKE} post-install: - (cd ${WRKSRC}/po; ${GMAKE} install) + cd ${WRKSRC}/po && ${GMAKE} install .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |