pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/print/pslib
Module Name: pkgsrc
Committed By: plunky
Date: Thu Jan 31 16:33:15 UTC 2019
Modified Files:
pkgsrc/print/pslib: Makefile
Log Message:
fix pkglint warning (using && instead of ; to separate commands)
no functional change
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/print/pslib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/print/pslib/Makefile
diff -u pkgsrc/print/pslib/Makefile:1.17 pkgsrc/print/pslib/Makefile:1.18
--- pkgsrc/print/pslib/Makefile:1.17 Wed Aug 22 09:46:15 2018
+++ pkgsrc/print/pslib/Makefile Thu Jan 31 16:33:15 2019
@@ -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"
Home |
Main Index |
Thread Index |
Old Index