X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=all;h=ee4d75aa64b808170180e095d1593d8d969fe63f;hp=83ef8bdac82afcbbeecc8337e673764f1caf6f20;hb=036e5f4205ded6599ab2fd1f12b57c93a5f998ad;hpb=0a49b6cf7fc5732685cfbc8c055056896ac38396 diff --git a/all b/all index 83ef8bda..ee4d75aa 100755 --- a/all +++ b/all @@ -978,7 +978,13 @@ case "$cmd" in srcdir=$5 depsdir=$6 targetfiles=$7 + set -x if [ -n "$targetfiles" ]; then + case " $HOSTS_THAT_ARE_DISABLED " in + *\ $host\ *) + exit + ;; + esac case " $HOSTS_THAT_ARE_MYSELF " in *\ $host\ *) verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/" @@ -992,7 +998,7 @@ case "$cmd" in *) verbose rsync --delete -zLvaSHP "$srcdir"/ "$host:$buildpath/" verbose rsync --delete -zLvaSHP "$depsdir"/ "$host:$buildpath.deps/" - verbose ssh "$host" "ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && make clean $maketargets $makeflags" + verbose ssh "$host" "ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && nice -`nice` make clean $maketargets $makeflags" for f in $targetfiles; do verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true done