Received: by mail.netbsd.org (Postfix, from userid 605) id CAE7684D96; Sat, 6 Apr 2019 08:43:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 51FCB84D8A for ; Sat, 6 Apr 2019 08:43:42 +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 01XXuOSi__NN for ; Sat, 6 Apr 2019 08:43:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id ABFD484D40 for ; Sat, 6 Apr 2019 08:43:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A0BE0FB16; Sat, 6 Apr 2019 08:43:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155454022152460" MIME-Version: 1.0 Date: Sat, 6 Apr 2019 08:43:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190406084341.A0BE0FB16@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. --_----------=_155454022152460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Apr 6 08:43:41 UTC 2019 Modified Files: pkgsrc/mk: fonts.mk Log Message: fonts.mk: hide echo itself, and improve quoting To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/mk/fonts.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155454022152460 Content-Disposition: inline Content-Length: 814 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/fonts.mk diff -u pkgsrc/mk/fonts.mk:1.14 pkgsrc/mk/fonts.mk:1.15 --- pkgsrc/mk/fonts.mk:1.14 Sat Apr 6 06:55:18 2019 +++ pkgsrc/mk/fonts.mk Sat Apr 6 08:43:41 2019 @@ -1,4 +1,4 @@ -# $NetBSD: fonts.mk,v 1.14 2019/04/06 06:55:18 maya Exp $ +# $NetBSD: fonts.mk,v 1.15 2019/04/06 08:43:41 wiz Exp $ # # Install .otf and .ttf font files. # @@ -19,7 +19,7 @@ INSTALLATION_DIRS+= ${TTF_FONTS_DIR} ${O do-install: install-fonts install-fonts: - ${STEP_MSG} "Installing all .otf and .ttf files from " ${WRKSRC} + @${STEP_MSG} "Installing all .otf and .ttf files from ${WRKSRC}" ${FIND} ${WRKSRC} -name ${DESTDIR:T} -prune -o -iname '*.ttf' -exec \ ${INSTALL_DATA} "{}" ${DESTDIR}${TTF_FONTS_DIR} ";" ${FIND} ${WRKSRC} -name ${DESTDIR:T} -prune -o -iname '*.otf' -exec \ --_----------=_155454022152460--