blob: cb2d62fe8cf237003cdaf81ae1896448c1e1b3f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
# stop on errors
set -e
# mwccnlm is having a hard time understanding "-I./../include"
# convert it to "-I../include"
args=" "`echo $* | sed -e 's/-I.\/../-I../g'`
wine --debugmsg -all -- mwccnlm $args
|