pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/python Escape the semicolon to terminate exec sta...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f1c8eb815155
branches:  trunk
changeset: 358058:f1c8eb815155
user:      sevan <sevan%pkgsrc.org@localhost>
date:      Sat Feb 04 11:43:17 2017 +0000

description:
Escape the semicolon to terminate exec statement.
Heads up by jperkin@

diffstat:

 lang/python/egg.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r aed868539cc7 -r f1c8eb815155 lang/python/egg.mk
--- a/lang/python/egg.mk        Sat Feb 04 11:15:40 2017 +0000
+++ b/lang/python/egg.mk        Sat Feb 04 11:43:17 2017 +0000
@@ -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 @@
 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