diff options
author | unknown <kent@suse9-x86.mysql.com> | 2006-07-03 16:44:17 +0200 |
---|---|---|
committer | unknown <kent@suse9-x86.mysql.com> | 2006-07-03 16:44:17 +0200 |
commit | 9ecc01a9e37cae5087eb4fd5baa96bf8e693d3a9 (patch) | |
tree | f9089300390b45c7507a0c517ccef9f9d10bbc1c /netware/BUILD/mwasmnlm | |
parent | 97c2188812ee3aa9b6480d412e20ecb71740bc0b (diff) | |
download | mariadb-git-9ecc01a9e37cae5087eb4fd5baa96bf8e693d3a9.tar.gz |
mwldnlm, mwccnlm, mwasmnlm:
Use Perl for filtering, do more filtering
netware/BUILD/mwasmnlm:
Use Perl for filtering, do more filtering
netware/BUILD/mwccnlm:
Use Perl for filtering, do more filtering
netware/BUILD/mwldnlm:
Use Perl for filtering, do more filtering
Diffstat (limited to 'netware/BUILD/mwasmnlm')
-rwxr-xr-x | netware/BUILD/mwasmnlm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/netware/BUILD/mwasmnlm b/netware/BUILD/mwasmnlm index 7f2378871c6..11fc2bc3842 100755 --- a/netware/BUILD/mwasmnlm +++ b/netware/BUILD/mwasmnlm @@ -5,4 +5,7 @@ set -e args=" $*" -wine --debugmsg -all -- mwasmnlm $args 2>&1 | sed -e 's/^[[:cntrl:]].*[[:cntrl:]]>//' +# NOTE: Option 'pipefail' is not standard sh +set -o pipefail +wine --debugmsg -all -- mwasmnlm $args | \ +perl -pe 's/\r//g; s/^\e.*\e(\[J|>)?//; s/[[^:print:]]//g' |