mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
10 lines
216 B
Bash
Executable file
10 lines
216 B
Bash
Executable file
#! /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
|