xref: /freebsd/contrib/expat/run.sh.in (revision d8ffc21c5ca6f7d4f2d9a65dc6308699af0b6a01)
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