diff options
author | Ken Moore <ken@ixsystems.com> | 2018-03-06 11:13:26 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-03-06 11:13:26 -0500 |
commit | da7dfd7eb42d347ad7c84d1374dd8e846fe96a80 (patch) | |
tree | 2df91d6968924ae9ac2067b255cf4401c53d3968 /mkport.sh | |
parent | Update the i18N translation files (sync with sources) (diff) | |
download | lumina-da7dfd7eb42d347ad7c84d1374dd8e846fe96a80.tar.gz lumina-da7dfd7eb42d347ad7c84d1374dd8e846fe96a80.tar.bz2 lumina-da7dfd7eb42d347ad7c84d1374dd8e846fe96a80.zip |
Quick update to mkports.sh
Ensure that the final "port" variable is the list of all the ports that were updated
Diffstat (limited to 'mkport.sh')
-rwxr-xr-x | mkport.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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" |