mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
8 lines
191 B
Text
8 lines
191 B
Text
|
#! /bin/sh
|
||
|
|
||
|
# 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
|