summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/x2go-buildallpackages4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/x2go-buildallpackages b/bin/x2go-buildallpackages
index 0736d84..9cbfa0d 100755
--- a/bin/x2go-buildallpackages
+++ b/bin/x2go-buildallpackages
@@ -56,14 +56,14 @@ COMPONENT=${1:-""}
# build the newest code... (nightly-builds)
[ "x$COMPONENT" = "xheuler" ] || [ -z $COMPONENT ] && {
- for pkg comp checkout in $LIB_PACKAGES_HEULER + $APP_PACKAGES_HEULER; do
+ echo $LIB_PACKAGES_HEULER + $APP_PACKAGES_HEULER | while read pkg comp checkout; do
x2go-buildpackage $pkg $comp $checkout
done
}
# build all packages tagged as ,,build-main'Ä
[ "x$COMPONENT" = "xmain" ] || [ -z $COMPONENT ] && {
- for pkg comp checkout in $LIB_PACKAGES_MAIN + $APP_PACKAGES_MAIN; do
+ echo $LIB_PACKAGES_MAIN + $APP_PACKAGES_MAIN | while read pkg comp checkout; do
x2go-buildpackage $pkg $comp $checkout
done
}