diff options
Diffstat (limited to '3rdparty/expat/run.sh.in')
-rw-r--r-- | 3rdparty/expat/run.sh.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3rdparty/expat/run.sh.in b/3rdparty/expat/run.sh.in new file mode 100644 index 00000000000..ff3fb36447c --- /dev/null +++ b/3rdparty/expat/run.sh.in @@ -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 |