diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-10-09 19:30:42 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-10-09 19:30:42 +0800 |
commit | 69f035031e80449af0081cbd201ec424d127acfa (patch) | |
tree | 378d810ed69df268eb8c427710e2cbc130ce2887 /Mk/bsd.port.mk | |
parent | 83cac038440239f36696a3039f7dc0b526b7824d (diff) | |
download | freebsd-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.mk | 2 |
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 |