diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-04-18 04:08:44 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-04-18 04:08:44 +0000 |
commit | 22df9677d29beb2561db6987b6847dc1bd654a42 (patch) | |
tree | 5ed0e32dccfe959cdb5c6f10e759eca59a17c2e5 /emulators | |
parent | 5efec3454b5e75713f129aaf91b13672abbc3963 (diff) | |
download | freebsd-ports-22df9677d29beb2561db6987b6847dc1bd654a42.zip |
Change the name of the check-wine-devel-vs-wine-staging target to
check-wine-devel-vs-staging for brevity (and since the wine-staging
port is gone for the time being and STASGING is just an option for now).
Fix a typo in some of that target's output on the way.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/wine-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index dd3c06e8b6be..ffc42f2d7332 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -169,11 +169,11 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/programs/winedbg/README ${STAGEDIR}${DOCSDIR}/README.winedbg ${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${STAGEDIR}${DOCSDIR}/README.winedump -check-wine-devel-vs-wine-staging: +check-wine-devel-vs-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 contingent on %%STAGING%%?\n" "$$f"; \ fi \ done |