]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
yasm-wrapper: more futzing to behave on fedora 19
authorSage Weil <sage@inktank.com>
Thu, 22 Aug 2013 21:20:57 +0000 (14:20 -0700)
committerSage Weil <sage@inktank.com>
Thu, 22 Aug 2013 21:56:21 +0000 (14:56 -0700)
Some new arguments, and behave (return success) when the touch target isn't
specified.

Signed-off-by: Sage Weil <sage@inktank.com>
src/yasm-wrapper

index 8364d49599f856395b641e47ab7ed2995efd3d4f..57d95def46ed231b408638b2610cfcd9875d6f77 100755 (executable)
@@ -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