1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Fix 'USE_DOS2UNIX= file list' not printing file names since r183768

PR:		ports/180005
Submitted by:	glewis
With hat:	portmgr
This commit is contained in:
Bryan Drewery 2013-10-09 11:30:42 +00:00
parent 42ec77e2f1
commit c08e691cbf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329882

View File

@ -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