openldap/libraries/libmdb/make.sh
Hallvard B Furuseth c98c14fef5 Private: make.sh
2011-06-29 22:29:24 +02:00

10 lines
270 B
Bash
Executable File

#!/bin/sh
warning_filter() {
egrep -v ': In function .*:$|: warning: (ISO C99 requires rest arguments to be used|format .*%p.* has type .*struct MDB_.*\*)'
}
exit `{
{ XCFLAGS="-std=c99 -pedantic" make "$@" 2>&1; echo $? >&3; } |
warning_filter >&2
} 3>&1`