pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/docbook-xsl
Module Name: pkgsrc
Committed By: hauke
Date: Mon Jul 20 18:41:06 UTC 2020
Modified Files:
pkgsrc/textproc/docbook-xsl: Makefile
Log Message:
While 'find ... -exec ... {} +' is more efficient, it is less portable.
And for exactly one file, efficiency takes a second seat.
To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 pkgsrc/textproc/docbook-xsl/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/docbook-xsl/Makefile
diff -u pkgsrc/textproc/docbook-xsl/Makefile:1.73 pkgsrc/textproc/docbook-xsl/Makefile:1.74
--- pkgsrc/textproc/docbook-xsl/Makefile:1.73 Sat Mar 28 18:36:42 2020
+++ pkgsrc/textproc/docbook-xsl/Makefile Mon Jul 20 18:41:06 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2020/03/28 18:36:42 wiz Exp $
+# $NetBSD: Makefile,v 1.74 2020/07/20 18:41:06 hauke Exp $
DISTNAME= docbook-xsl-nons-1.79.2
PKGNAME= ${DISTNAME:S/-nons//}
@@ -71,7 +71,7 @@ do-install:
${ECHO} "cd ${WRKSRC} && ${PAX} -rw -pp -pm $$d ${DESTDIR}${XSLDIR}/"; \
cd ${WRKSRC} && ${PAX} -rw -pp -pm $$d ${DESTDIR}${XSLDIR}/; \
done
- ${FIND} ${DESTDIR}${XSLDIR} -name '*.orig' -exec ${RM} {} +
+ ${FIND} ${DESTDIR}${XSLDIR} -name '*.orig' -exec ${RM} {} \;
.include "../../textproc/xmlcatmgr/catalogs.mk"
.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index