svn commit: r451903 - head/emulators/wine-devel
Gerald Pfeifer
gerald at FreeBSD.org
Thu Oct 12 16:02:45 UTC 2017
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
More information about the svn-ports-head
mailing list