From: Sage Weil Date: Thu, 22 Aug 2013 21:20:57 +0000 (-0700) Subject: yasm-wrapper: more futzing to behave on fedora 19 X-Git-Tag: v0.69~73 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=98583b59aaae509411dc66e7190bf14fd28082a1;p=ceph.git yasm-wrapper: more futzing to behave on fedora 19 Some new arguments, and behave (return success) when the touch target isn't specified. Signed-off-by: Sage Weil --- diff --git a/src/yasm-wrapper b/src/yasm-wrapper index 8364d49599f8..57d95def46ed 100755 --- a/src/yasm-wrapper +++ b/src/yasm-wrapper @@ -11,7 +11,7 @@ while [ -n "$*" ]; do new="-f $1" shift ;; - -g | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -I* ) + -g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -I* | -m* | -pipe ) shift ;; -MT ) @@ -30,7 +30,9 @@ while [ -n "$*" ]; do esac done -echo yasm $new +echo $0: yasm $new yasm $new [ -n "$touch" ] && touch $touch + +true \ No newline at end of file