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: Release-1-6-1b~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18b7c544fdda9aa1316b50d9907d8797fbdacdf8;p=thirdparty%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 ef0cfc633..319f6ba98 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