Received: by mail.netbsd.org (Postfix, from userid 605) id E8B4384DB0; Fri, 7 Sep 2018 10:03:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 02CD484D9D for ; Fri, 7 Sep 2018 10:03:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id cJbk63hjuR4u for ; Fri, 7 Sep 2018 10:03:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3B8AD84C78 for ; Fri, 7 Sep 2018 10:03:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38B34FBF8; Fri, 7 Sep 2018 10:03:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153631462564910" MIME-Version: 1.0 Date: Fri, 7 Sep 2018 10:03:45 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/meta-pkgs/boost To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180907100345.38B34FBF8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_153631462564910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Sep 7 10:03:45 UTC 2018 Modified Files: pkgsrc/meta-pkgs/boost: Makefile.common Log Message: boost: The tarball contains files with spaces, use -print0. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 pkgsrc/meta-pkgs/boost/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153631462564910 Content-Disposition: inline Content-Length: 942 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/boost/Makefile.common diff -u pkgsrc/meta-pkgs/boost/Makefile.common:1.77 pkgsrc/meta-pkgs/boost/Makefile.common:1.78 --- pkgsrc/meta-pkgs/boost/Makefile.common:1.77 Sun Sep 2 12:53:36 2018 +++ pkgsrc/meta-pkgs/boost/Makefile.common Fri Sep 7 10:03:45 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.77 2018/09/02 12:53:36 leot Exp $ +# $NetBSD: Makefile.common,v 1.78 2018/09/07 10:03:45 jperkin Exp $ # # used by devel/boost-build/Makefile # used by devel/boost-docs/Makefile @@ -89,7 +89,7 @@ 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. pre-configure: - ${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${TOUCH} # Generate a new user.hpp or use the installed one, depending on the package # we are building. --_----------=_153631462564910--