From: Rudolf Polzer Date: Wed, 11 Aug 2010 04:41:02 +0000 (+0200) Subject: rsync calls: remove options that OSX rsync does not support X-Git-Tag: xonotic-v0.1.0preview~310 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=bd767b4ed0ee1dc8d32fc4aae08e64f35ed5c8df;hp=6d3df10f5b974e272f6a0ea68b7f01cee8748e9e rsync calls: remove options that OSX rsync does not support --- diff --git a/all b/all index d502a836..b46a9a35 100755 --- a/all +++ b/all @@ -936,17 +936,17 @@ case "$cmd" in targetfiles=$6 case " $HOSTS_THAT_ARE_MYSELF " in *\ $host\ *) - verbose rsync --delete -zvaSHPAX "$srcdir"/ "$buildpath/" + verbose rsync --delete -zvaSHP "$srcdir"/ "$buildpath/" verbose eval make -C "$buildpath" clean $maketargets $makeflags for f in $targetfiles; do verbose mv "$buildpath/${f%:*}" "${f##*:}" || true done ;; *) - verbose rsync --delete -zvaSHPAX "$srcdir"/ "$host:$buildpath/" + verbose rsync --delete -zvaSHP "$srcdir"/ "$host:$buildpath/" verbose ssh "$host" ". ~/.profile && cd $buildpath && make clean $maketargets $makeflags" for f in $targetfiles; do - verbose rsync -zvaSHPAX "$host:$buildpath/${f%:*}" "${f##*:}" || true + verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true done ;; esac