From da7dfd7eb42d347ad7c84d1374dd8e846fe96a80 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 6 Mar 2018 11:13:26 -0500 Subject: Quick update to mkports.sh Ensure that the final "port" variable is the list of all the ports that were updated --- mkport.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mkport.sh') diff --git a/mkport.sh b/mkport.sh index 9fc08f1f..818ed6ca 100755 --- a/mkport.sh +++ b/mkport.sh @@ -71,10 +71,12 @@ rm ${distdir}/${dfile}-* 2>/dev/null # Copy ports files orig_dir=`pwd` +allports="" for port in `find port-files/FreeBSD | grep Makefile | cut -d / -f 3-4` do cd ${orig_dir} echo "Updating port: ${port}" + allports="${allports} ${port}" #add this port to the list if [ -d "${portsdir}/${port}" ] ; then rm -rf ${portsdir}/${port} 2>/dev/null fi @@ -98,5 +100,5 @@ do massage_subdir ${portsdir}/${tcat} done #Set a couple variables for the TrueOS build cluster to know which is the "overall" port -port="x11/lumina" #reset this variable in case something else needs it +port=${allports} #reset this variable in case something else needs it export bPort="x11/lumina" -- cgit