mirror of https://github.com/ceph/ceph
45 lines
669 B
Bash
Executable File
45 lines
669 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# libtool and yasm do not get along.
|
|
# filter out any crap that libtool feeds us that yasm does not understand.
|
|
#echo $0: got $*
|
|
new=""
|
|
touch=""
|
|
while [ -n "$*" ]; do
|
|
case "$1" in
|
|
-f )
|
|
shift
|
|
new="$new -f $1"
|
|
shift
|
|
;;
|
|
-g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | -E | --param* | -O* | -m* | -pipe | ggc-min* | -pthread )
|
|
shift
|
|
;;
|
|
-I | -isystem )
|
|
shift
|
|
new="$new -i $1"
|
|
shift
|
|
;;
|
|
-MT )
|
|
shift
|
|
shift
|
|
;;
|
|
-MF )
|
|
shift
|
|
touch="$1"
|
|
shift
|
|
;;
|
|
* )
|
|
new="$new $1"
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
#echo $0: yasm $new
|
|
yasm $new
|
|
|
|
[ -n "$touch" ] && touch $touch
|
|
|
|
true
|