瀏覽代碼

configure: Replace literally printed '\n' with newline

The idea here was to leave an empty line before the message, but by
default, echo prints '\n' literally instead of interpreting it. Use a
separate echo without parameter instead like in other places in the
script.

Fixes: 6fdc5bc173188f5e4942616b16d589500b874a15
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Kevin Wolf 10 月之前
父節點
當前提交
c11aaaaef1
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      configure

+ 2 - 1
configure

@@ -2062,7 +2062,8 @@ chmod +x config.status
 rm -r "$TMPDIR1"
 rm -r "$TMPDIR1"
 
 
 if test "$rust" != disabled; then
 if test "$rust" != disabled; then
-  echo '\nINFO: Rust bindings generation with `bindgen` might fail in some cases where'
+  echo
+  echo 'INFO: Rust bindings generation with `bindgen` might fail in some cases where'
   echo 'the detected `libclang` does not match the expected `clang` version/target. In'
   echo 'the detected `libclang` does not match the expected `clang` version/target. In'
   echo 'this case you must pass the path to `clang` and `libclang` to your build'
   echo 'this case you must pass the path to `clang` and `libclang` to your build'
   echo 'command invocation using the environment variables CLANG_PATH and LIBCLANG_PATH'
   echo 'command invocation using the environment variables CLANG_PATH and LIBCLANG_PATH'