Add missing file required by Expat 2.2.2

Expat configure fails without this file.

See https://github.com/wxWidgets/wxWidgets/pull/524
This commit is contained in:
Vadim Zeitlin
2017-07-25 16:03:22 +02:00
parent a533fb141d
commit df37c4f9e9

12
src/expat/run.sh.in Normal file
View File

@@ -0,0 +1,12 @@
#! /usr/bin/env bash
# Copyright (C) 2017 Expat development team
# Licensed under the MIT license
case "@host@" in
*-mingw*)
exec wine "$@"
;;
*)
exec "$@"
;;
esac