svn commit: r329882 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Wed Oct 9 11:30:42 UTC 2013
Author: bdrewery
Date: Wed Oct 9 11:30:42 2013
New Revision: 329882
URL: http://svnweb.freebsd.org/changeset/ports/329882
Log:
- Fix 'USE_DOS2UNIX= file list' not printing file names since r183768
PR: ports/180005
Submitted by: glewis
With hat: portmgr
Modified:
head/Mk/bsd.port.mk
Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk Wed Oct 9 10:08:19 2013 (r329881)
+++ head/Mk/bsd.port.mk Wed Oct 9 11:30:42 2013 (r329882)
@@ -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
More information about the svn-ports-all
mailing list