From 18b7c544fdda9aa1316b50d9907d8797fbdacdf8 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 19 Apr 2002 20:58:51 +0000 Subject: [PATCH] No need for ${1+"$@"} workaround, as the command is never invoked with zero arguments. The workaround breaks with Zsh. --- tests/ccnoco.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2