From: Rudolf Polzer Date: Fri, 6 Aug 2010 06:36:25 +0000 (+0200) Subject: properly rebrand the DP binaries X-Git-Tag: xonotic-v0.1.0preview~325^2~1 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=e17b0dab5c0e5fe344eadbcb59c58f28e1b9d70a;ds=sidebyside properly rebrand the DP binaries --- diff --git a/all b/all index 73b1e045..468406be 100755 --- a/all +++ b/all @@ -903,17 +903,21 @@ case "$cmd" in verbose eval make clean $maketargets $makeflags ) for f in $targetfiles; do - verbose mv "$buildpath/${f%:*}" "${f##*:}" + verbose mv "$buildpath/${f%:*}" "${f##*:}" || true done ;; *) rsync --delete -zvaSHPAX "$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##*:}" + verbose rsync -zvaSHPAX "$host:$buildpath/${f%:*}" "${f##*:}" || true done ;; esac + # now rebrand the binaries... + for f in $targetfiles; do + verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "$d0/misc/tools/xonotic.brand" "${f##*:}" || true + done ;; release-compile) suffix=$1