pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/python
Module Name: pkgsrc
Committed By: nia
Date: Wed Nov 15 15:24:09 UTC 2023
Modified Files:
pkgsrc/lang/python: egg.mk
Log Message:
python: Ensure find is terminated.
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 pkgsrc/lang/python/egg.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/python/egg.mk
diff -u pkgsrc/lang/python/egg.mk:1.42 pkgsrc/lang/python/egg.mk:1.43
--- pkgsrc/lang/python/egg.mk:1.42 Sun Oct 29 17:07:15 2023
+++ pkgsrc/lang/python/egg.mk Wed Nov 15 15:24:09 2023
@@ -1,4 +1,4 @@
-# $NetBSD: egg.mk,v 1.42 2023/10/29 17:07:15 wiz Exp $
+# $NetBSD: egg.mk,v 1.43 2023/11/15 15:24:09 nia Exp $
#
# The method used in this Makefile fragment is obsolete.
# Please use wheel.mk instead.
@@ -82,7 +82,7 @@ privileged-install-hook: fixup-egg-info
fixup-egg-info: # ensure egg-info directory contents are always 644
if ${TEST} -d "${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_INFODIR}"; then \
${FIND} ${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_INFODIR} -type f \
- -exec ${CHMOD} ${SHAREMODE} '{}' +; \
+ -exec ${CHMOD} ${SHAREMODE} '{}' ';' ; \
fi
.include "../../lang/python/extension.mk"
Home |
Main Index |
Thread Index |
Old Index