[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 3/5] configure: Replace literally printed '\n' with newline
From: |
Michael Tokarev |
Subject: |
[PULL 3/5] configure: Replace literally printed '\n' with newline |
Date: |
Tue, 22 Oct 2024 09:15:31 +0300 |
From: Kevin Wolf <kwolf@redhat.com>
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>
---
configure | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index 72d1a94225..0918147156 100755
--- a/configure
+++ b/configure
@@ -2062,7 +2062,8 @@ chmod +x config.status
rm -r "$TMPDIR1"
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 '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'
--
2.39.5
- [PULL 0/5] Trivial patches for 2024-10-22, Michael Tokarev, 2024/10/22
- [PULL 1/5] linux-user: Clean up unused header, Michael Tokarev, 2024/10/22
- [PULL 2/5] ui/console-vc: Silence warning about sprintf() on OpenBSD, Michael Tokarev, 2024/10/22
- [PULL 3/5] configure: Replace literally printed '\n' with newline,
Michael Tokarev <=
- [PULL 4/5] meson.build: Remove ncurses workaround for OpenBSD, Michael Tokarev, 2024/10/22
- [PULL 5/5] replace error_setg(&error_fatal, ...) with error_report(), Michael Tokarev, 2024/10/22
- Re: [PULL 0/5] Trivial patches for 2024-10-22, Peter Maydell, 2024/10/24