From 7c801ec93a90f856837c4c71f0497ac03c33b611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20K=C3=B6hne?= Date: Tue, 15 Feb 2022 09:11:43 +0100 Subject: configure.bat: Fix call without arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If there are no arguments, echo will print its status, and config.opt.in will contain ECHO is off. Fix this by using "echo." idiom. This amends 57ad532e75f6221 Pick-to: 6.2 6.3 Change-Id: I1697e59f23cd28256a4a6ce357eae70e36c49d5a Reviewed-by: Jörg Bornemann --- configure.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.bat') diff --git a/configure.bat b/configure.bat index c78daf6e3b..5fd2d9091a 100644 --- a/configure.bat +++ b/configure.bat @@ -104,7 +104,7 @@ cd "%TOPQTDIR%" rem Write config.opt if we're not currently -redo'ing if "!rargs!" == "" ( - echo %*>config.opt.in + echo.%*>config.opt.in cmake -DIN_FILE=config.opt.in -DOUT_FILE=config.opt -DIGNORE_ARGS=-top-level -P "%QTSRC%\cmake\QtWriteArgsFile.cmake" ) -- cgit v1.2.3