From: Rudolf Polzer Date: Fri, 12 Nov 2021 19:02:33 +0000 (-0800) Subject: We no longer have the old icon rebranding script. X-Git-Tag: xonotic-v0.8.5~57^2~2 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=9f4a5a6bd28db5698a71d20795cfaaf340e0eec9 We no longer have the old icon rebranding script. Well, let's just do another way. --- diff --git a/misc/tools/all/release.subr b/misc/tools/all/release.subr index 1a502bbd..91619fe3 100644 --- a/misc/tools/all/release.subr +++ b/misc/tools/all/release.subr @@ -222,6 +222,7 @@ case "$cmd" in case " $HOSTS_THAT_ARE_MYSELF " in *\ $host\ *) verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/" + verbose rsync --delete -zLvaSHP misc/logos/icons_ico/xonotic.ico "$buildpath"/darkplaces.ico verbose rsync --delete -zLvaSHP "$depsdir"/*/ "$buildpath.deps/" verbose ln -snf "$buildpath.deps" "$buildpath/.deps" verbose eval make -C "$buildpath" clean $maketargets $makeflags @@ -231,6 +232,7 @@ case "$cmd" in ;; *) verbose rsync --delete -zLvaSHP "$srcdir"/ "$host":"$buildpath/" + verbose rsync --delete -zLvaSHP misc/logos/icons_ico/xonotic.ico "$host":"$buildpath"/darkplaces.ico verbose rsync --delete -zLvaSHP "$depsdir"/*/ "$host":"$buildpath.deps/" verbose ssh "$host" "[ -f /etc/profile ] && . /etc/profile; [ -f ~/.profile ] && . ~/.profile; export LC_ALL=C; ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && nice -`nice` make clean $maketargets $makeflags" for f in $targetfiles; do @@ -238,14 +240,6 @@ case "$cmd" in done ;; esac - # now rebrand the binaries... - for f in $targetfiles; do - case "${f##*:}" in - Xonotic/xonotic*.exe) - verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "${f##*:}" - ;; - esac - done ;; release-compile) release_common