diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2017-10-12 16:02:44 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2017-10-12 16:02:44 +0000 |
commit | b9d73e42dd06c9beb5dbce9a13b5ec23813fc4f4 (patch) | |
tree | f40700ff122606caf2a6742807ed18a4ed498c85 /emulators | |
parent | fa61a05b8875945aae8f619949107dd751bd85a5 (diff) | |
download | ports-b9d73e42dd06c9beb5dbce9a13b5ec23813fc4f4.tar.gz ports-b9d73e42dd06c9beb5dbce9a13b5ec23813fc4f4.zip |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/wine-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 54af2e7996fc..5e7de1828361 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -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 |