Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Oct 2017 16:02:44 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451903 - head/emulators/wine-devel
Message-ID:  <201710121602.v9CG2i5W068397@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710121602.v9CG2i5W068397>