From: Nathan Moinvaziri Date: Fri, 26 Feb 2021 00:46:11 +0000 (-0800) Subject: Fixed malformed double quotes in shell script. X-Git-Tag: 2.1.0-beta1~591 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1ad50412f4e3006139bbff8f83481d4a851b82e;p=thirdparty%2Fzlib-ng.git Fixed malformed double quotes in shell script. --- diff --git a/configure b/configure index 339e8fd8..3d527683 100755 --- a/configure +++ b/configure @@ -557,7 +557,7 @@ try() ( $* ) >> configure.log 2>&1 ret=$? if test $ret -ne 0; then - echo "(exit code "$ret")" >> configure.log + echo "(exit code $ret)" >> configure.log fi return $ret }