From owner-svn-ports-head@freebsd.org Thu Oct 12 16:02:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 908ADE2DE12; Thu, 12 Oct 2017 16:02:45 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DB74825E8; Thu, 12 Oct 2017 16:02:45 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9CG2io5068398; Thu, 12 Oct 2017 16:02:44 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9CG2i5W068397; Thu, 12 Oct 2017 16:02:44 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201710121602.v9CG2i5W068397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 12 Oct 2017 16:02:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451903 - head/emulators/wine-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/emulators/wine-devel X-SVN-Commit-Revision: 451903 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Oct 2017 16:02:45 -0000 Author: gerald Date: Thu Oct 12 16:02:44 2017 New Revision: 451903 URL: https://svnweb.freebsd.org/changeset/ports/451903 Log: Use ${GREP}, ${SED}, and ${PRINTF} instead of their direct brethren. Reported by: portlint Modified: head/emulators/wine-devel/Makefile Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Thu Oct 12 16:00:30 2017 (r451902) +++ head/emulators/wine-devel/Makefile Thu Oct 12 16:02:44 2017 (r451903) @@ -172,10 +172,10 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${STAGEDIR}${DOCSDIR}/README.winedump check-wine-devel-vs-wine-staging: - @grep %%STAGING%% pkg-plist | while read f; do \ - f=`echo $$f | sed -e 's/%%STAGING%%//'`; \ + @${GREP} %%STAGING%% pkg-plist | while read f; do \ + f=`echo $$f | ${SED} -e 's/%%STAGING%%//'`; \ if [ -f "$$STAGEDIR/$$PREFIX/$$f" ]; then \ - printf "%s no longer contigent on %%STAGING%%?\n" "$$f"; \ + ${PRINTF} "%s no longer contigent on %%STAGING%%?\n" "$$f"; \ fi \ done