Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Oct 2013 11:30:42 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329882 - head/Mk
Message-ID:  <201310091130.r99BUgNf024296@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310091130.r99BUgNf024296>