aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2013-10-09 19:30:42 +0800
committerbdrewery <bdrewery@FreeBSD.org>2013-10-09 19:30:42 +0800
commit69f035031e80449af0081cbd201ec424d127acfa (patch)
tree378d810ed69df268eb8c427710e2cbc130ce2887 /Mk/bsd.port.mk
parent83cac038440239f36696a3039f7dc0b526b7824d (diff)
downloadfreebsd-ports-gnome-69f035031e80449af0081cbd201ec424d127acfa.tar.gz
freebsd-ports-gnome-69f035031e80449af0081cbd201ec424d127acfa.tar.zst
freebsd-ports-gnome-69f035031e80449af0081cbd201ec424d127acfa.zip
- Fix 'USE_DOS2UNIX= file list' not printing file names since r183768
PR: ports/180005 Submitted by: glewis With hat: portmgr
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index bd6557e2fac0..73506d5ccb59 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -3583,9 +3583,9 @@ patch-dos2unix:
@${FIND} -E ${WRKSRC} -type f -iregex '${DOS2UNIX_REGEX}' -print0 | \
${XARGS} -0 ${REINPLACE_CMD} -i '' -e 's/ $$//'
.else
- @${ECHO_MSG} "===> Converting DOS text file to UNIX text file: ${f}"
.if ${USE_DOS2UNIX:M*/*}
.for f in ${USE_DOS2UNIX}
+ @${ECHO_MSG} "===> Converting DOS text file to UNIX text file: ${f}"
@${REINPLACE_CMD} -i '' -e 's/ $$//' ${WRKSRC}/${f}
.endfor
.else