瀏覽代碼

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

legacy
Sam Hocevar sam 12 年之前
父節點
當前提交
a4f4367877
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      build/lol-build

+ 8
- 0
build/lol-build 查看文件

@@ -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()


Loading…
取消
儲存