浏览代码

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


正在加载...
取消
保存