diff options
author | leot <leot@pkgsrc.org> | 2018-09-01 21:21:46 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-09-01 21:21:46 +0000 |
commit | ffbaff9af688b3f598aafee1b90c73b867725b83 (patch) | |
tree | bf45f15678bfb4bd4ab5f7a68ec4c7a96f91c5ab /meta-pkgs/boost/Makefile.common | |
parent | 45720bc5dec545ceccb23cfd24cd06c7b7402f7f (diff) | |
download | pkgsrc-ffbaff9af688b3f598aafee1b90c73b867725b83.tar.gz |
boost: Revert -r1.74 in order to avoid PR pkg/53543
At least devel/boost-libs can fail due an `Argument list too long' due the use
of `+' in ${FIND}. Revert -r1.74 in order to use `\;' instead (and add a big XXX
comment regarding that).
Diffstat (limited to 'meta-pkgs/boost/Makefile.common')
-rw-r--r-- | meta-pkgs/boost/Makefile.common | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-pkgs/boost/Makefile.common b/meta-pkgs/boost/Makefile.common index 82e8e13e7e5..9edbc89f8c7 100644 --- a/meta-pkgs/boost/Makefile.common +++ b/meta-pkgs/boost/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.75 2018/08/16 15:58:32 adam Exp $ +# $NetBSD: Makefile.common,v 1.76 2018/09/01 21:21:46 leot Exp $ # # used by devel/boost-build/Makefile # used by devel/boost-docs/Makefile @@ -88,8 +88,12 @@ post-wrapper: # We can't do this at post-extract because the extract cookie will get a future # timestamp than the sources. If this happens, print-PLIST does not work. +# +# XXX: As pointed out by PR pkg/53543 using `+' in ${FIND} can lead to +# XXX: `Argument list too long' errors when building devel/boost-libs. +# XXX: As a workaround use `\;' instead. pre-configure: - ${FIND} ${WRKSRC} -type f -exec ${TOUCH} {} + + ${FIND} ${WRKSRC} -type f -exec ${TOUCH} {} \; # Generate a new user.hpp or use the installed one, depending on the package # we are building. |