aboutsummaryrefslogtreecommitdiff
path: root/mkport.sh
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-03-06 11:13:26 -0500
committerKen Moore <ken@ixsystems.com>2018-03-06 11:13:26 -0500
commitda7dfd7eb42d347ad7c84d1374dd8e846fe96a80 (patch)
tree2df91d6968924ae9ac2067b255cf4401c53d3968 /mkport.sh
parentUpdate the i18N translation files (sync with sources) (diff)
downloadlumina-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-xmkport.sh4
1 files changed, 3 insertions, 1 deletions
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"
bgstack15