[PC-BSD Commits] r4040 - pbibuild/pbibuilder/scripts
svn at pcbsd.org
svn at pcbsd.org
Thu Jun 4 17:18:01 PDT 2009
Author: kris
Date: 2009-06-04 17:18:01 -0700 (Thu, 04 Jun 2009)
New Revision: 4040
Modified:
pbibuild/pbibuilder/scripts/2.makeport.sh
Log:
Improved the find command, build modules in alphabetical order now
Modified: pbibuild/pbibuilder/scripts/2.makeport.sh
===================================================================
--- pbibuild/pbibuilder/scripts/2.makeport.sh 2009-06-04 19:01:26 UTC (rev 4039)
+++ pbibuild/pbibuilder/scripts/2.makeport.sh 2009-06-05 00:18:01 UTC (rev 4040)
@@ -46,7 +46,7 @@
# Start the loop looking for PBI's to create
cd ${PROGDIR}/modules
-for module in `find . | grep -v "/.svn" | grep pbi.conf | sed -e "s|pbi.conf||g" | sed -e "s|\./||g`
+for module in `find . | grep -v "/.svn" | grep pbi.conf | sed -e "s|pbi.conf||g" | sed -e "s|\./||g" | sort`
do
BUILD="0"
More information about the Commits
mailing list