xref: /freebsd/contrib/expat/run.sh.in (revision da5069e1f7daaef1e7157876d6044de6f3a08ce2)
1#! /usr/bin/env bash
2# Copyright (C) 2017 Expat development team
3# Licensed under the MIT license
4
5case "@host@" in
6*-mingw*)
7    exec wine "$@"
8    ;;
9*)
10    exec "$@"
11    ;;
12esac
13