From: Steve Holme Date: Fri, 22 Dec 2017 20:21:40 +0000 (+0000) Subject: build: Fixed incorrect script termination from commit ad1dc10e61 X-Git-Tag: curl-7_58_0~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b399b04902c43f479b51b142505700edcfc34271;p=thirdparty%2Fcurl.git build: Fixed incorrect script termination from commit ad1dc10e61 --- diff --git a/Makefile.am b/Makefile.am index a667c90862..bf6bfa987a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -621,7 +621,7 @@ function gen_element(type, dir, file)\ -v src_rc="$$win32_src_rc" \ -v src_x_srcs="$$sorted_src_x_srcs" \ -v src_x_hdrs="$$sorted_src_x_hdrs" \ - "$$awk_code" $(srcdir)/$(VC14_SRCTMPL) > $(VC14_SRCVCXPROJ) || { exit 1; };) \ + "$$awk_code" $(srcdir)/$(VC14_SRCTMPL) > $(VC14_SRCVCXPROJ) || { exit 1; }; \ \ echo "generating '$(VC15_LIBVCXPROJ)'"; \ awk -v proj_type=vcxproj \