svn commit: r351658 - head/Mk/Scripts

Antoine Brodin antoine at FreeBSD.org
Sun Apr 20 23:47:26 UTC 2014


Author: antoine
Date: Sun Apr 20 23:47:25 2014
New Revision: 351658
URL: http://svnweb.freebsd.org/changeset/ports/351658
QAT: https://qat.redports.org/buildarchive/r351658/

Log:
  Fix plist_sub_sed_sort.sh when value contains spaces

Modified:
  head/Mk/Scripts/plist_sub_sed_sort.sh

Modified: head/Mk/Scripts/plist_sub_sed_sort.sh
==============================================================================
--- head/Mk/Scripts/plist_sub_sed_sort.sh	Sun Apr 20 23:46:59 2014	(r351657)
+++ head/Mk/Scripts/plist_sub_sed_sort.sh	Sun Apr 20 23:47:25 2014	(r351658)
@@ -14,4 +14,4 @@ exec awk '{
 		gsub(/\\./, ".", a[2])
 		print length(a[2]), sedp
 	}
-}' | sort -rn | awk '{print $2}' | paste -s -d ' ' -
+}' | sort -rn | awk '{$1=""; print $0}' | paste -s -d ' ' -


More information about the svn-ports-all mailing list