Sfoglia il codice sorgente

build: do not launch weird Windows binaries when cross-compiling.

legacy
Sam Hocevar sam 12 anni fa
parent
commit
a4f4367877
1 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  1. +8
    -0
      build/lol-build

+ 8
- 0
build/lol-build Vedi File

@@ -84,6 +84,14 @@ __init__()
M4PATH="$M4PATH:./external/gtk-2.22.1/share/aclocal"
;;
esac

# Ensure we don’t launch weird Windows binaries when cross-compiling
case "${platform}" in
win*)
WINEDLLOVERRIDES="winemenubuilder.exe=d;wineboot.exe=d"
export WINEDLLOVERRIDES
;;
esac
}

bootstrap()


Caricamento…
Annulla
Salva