summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorsevan <sevan@pkgsrc.org>2017-02-04 11:43:17 +0000
committersevan <sevan@pkgsrc.org>2017-02-04 11:43:17 +0000
commit5ff927bc59bbdaf11c8698f3423ad2240dbc60de (patch)
tree08baa360e71a2484e4ffd4065d2e3388dc5b7545 /lang/python
parentb508c181197340d9a7480d2452a244e7809c9370 (diff)
downloadpkgsrc-5ff927bc59bbdaf11c8698f3423ad2240dbc60de.tar.gz
Escape the semicolon to terminate exec statement.
Heads up by jperkin@
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/egg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/egg.mk b/lang/python/egg.mk
index 5544d466e54..a1e8773d79f 100644
--- a/lang/python/egg.mk
+++ b/lang/python/egg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: egg.mk,v 1.24 2016/08/28 09:40:35 richard Exp $
+# $NetBSD: egg.mk,v 1.25 2017/02/04 11:43:17 sevan Exp $
#
# Common logic to handle Python Eggs
#
@@ -46,7 +46,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"