From df37c4f9e97d4ccca13596ab83309fe94c2f9cdb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 25 Jul 2017 16:03:22 +0200 Subject: [PATCH] Add missing file required by Expat 2.2.2 Expat configure fails without this file. See https://github.com/wxWidgets/wxWidgets/pull/524 --- src/expat/run.sh.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/expat/run.sh.in diff --git a/src/expat/run.sh.in b/src/expat/run.sh.in new file mode 100644 index 0000000000..ff3fb36447 --- /dev/null +++ b/src/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