From: Paul Eggert Date: Fri, 19 Apr 2002 20:58:51 +0000 (+0000) Subject: No need for ${1+"$@"} workaround, as the command is never invoked with X-Git-Tag: v1.10.2~1372 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18b7c544fdda9aa1316b50d9907d8797fbdacdf8;p=platform%2Fupstream%2Fautomake.git No need for ${1+"$@"} workaround, as the command is never invoked with zero arguments. The workaround breaks with Zsh. --- diff --git a/tests/ccnoco.test b/tests/ccnoco.test index ef0cfc6..319f6ba 100755 --- a/tests/ccnoco.test +++ b/tests/ccnoco.test @@ -50,7 +50,7 @@ case "$@" in ;; esac -exec gcc ${1+"$@"} +exec gcc "$@" END chmod +x Mycomp