svn commit: r471990 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Fri Jun 8 09:26:30 UTC 2018


Author: mat
Date: Fri Jun  8 09:26:28 2018
New Revision: 471990
URL: https://svnweb.freebsd.org/changeset/ports/471990

Log:
  Don't exec with a pipe afterwards, it is weird.
  
  PR:             227109
  Submitted by:   mat
  Sponsored by:   Absolight

Modified:
  head/Mk/Scripts/plist_sub_sed_sort.sh   (contents, props changed)

Modified: head/Mk/Scripts/plist_sub_sed_sort.sh
==============================================================================
--- head/Mk/Scripts/plist_sub_sed_sort.sh	Fri Jun  8 09:26:25 2018	(r471989)
+++ head/Mk/Scripts/plist_sub_sed_sort.sh	Fri Jun  8 09:26:28 2018	(r471990)
@@ -5,7 +5,7 @@
 #
 # PLIST_SUB_SED helper to sort by longest value first.
 
-exec awk '{
+awk '{
 	while (match($0, /s![^!]*![^!]*!g;/)) {
 		sedp=substr($0, RSTART, RLENGTH)
 		$0=substr($0, RSTART+RLENGTH)


More information about the svn-ports-all mailing list