pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: pkgsrc/lang/python
This breaks packages for me, for example devel/py-flakes:
=> Generating post-install file lists
if test -d "/scratch/devel/py-flakes/work/.destdir/usr/pkg/lib/python3.5/site-packages/pyflakes-1.3.0-py3.5.egg-info"; then /usr/bin/find
/scratch/devel/py-flakes/work/.destdir/usr/pkg/lib/python3.5/site-packages/pyflakes-1.3.0-py3.5.egg-info -type f -exec /bin/chmod 644 '{}' + \; ; fi
find: ;: unknown option
*** Error code 1
NetBSD-current/amd64.
Thomas
On Sat, Feb 04, 2017 at 11:43:17AM +0000, Sevan Janiyan wrote:
> Module Name: pkgsrc
> Committed By: sevan
> Date: Sat Feb 4 11:43:17 UTC 2017
>
> Modified Files:
> pkgsrc/lang/python: egg.mk
>
> Log Message:
> Escape the semicolon to terminate exec statement.
> Heads up by jperkin@
>
>
> To generate a diff of this commit:
> cvs rdiff -u -r1.24 -r1.25 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.24 pkgsrc/lang/python/egg.mk:1.25
> --- pkgsrc/lang/python/egg.mk:1.24 Sun Aug 28 09:40:35 2016
> +++ pkgsrc/lang/python/egg.mk Sat Feb 4 11:43:17 2017
> @@ -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"
>
Home |
Main Index |
Thread Index |
Old Index