From: Rudolf Polzer Date: Mon, 25 Oct 2010 07:02:03 +0000 (+0200) Subject: fix the win32 rebranding X-Git-Tag: xonotic-v0.1.0preview~112 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=fe88fe38670eaa4e19b460e0c74482f21ef9737f fix the win32 rebranding --- diff --git a/all b/all index 9af8ea85..050818ac 100755 --- a/all +++ b/all @@ -1396,9 +1396,9 @@ case "$cmd" in # now rebrand the binaries... for f in $targetfiles; do #verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "${XONOTIC_BRAND:-$d0/misc/tools/xonotic.brand}" "${f##*:}" || true - case "$f" in + case "${f##*:}" in xonotic*.exe) - verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$f" + verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "${f##*:}" ( d=`mktemp -d -t rebrand.XXXXXX` cd "$d" @@ -1407,7 +1407,7 @@ case "$cmd" in cat darkplaces.zip cd "$d0" rm -rf "$d" - ) >> "$f" + ) >> "${f##*:}" ;; esac done