diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-08-25 16:07:01 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-09-22 16:38:29 +0100 |
commit | cc3c71e89f0b1b18024030976fda650d27806c9f (patch) | |
tree | e0da41a98494d61b2268aff3a976c46f0caa3081 /configure | |
parent | 002d8c13df9f28bd3112edc1c1159b6d762d130f (diff) |
configure: Remove use of backtick `...` syntax
There's only one place in configure where we use `...` to execute a
command and capture the result. Switch to $() to match the rest of
the script. This silences a shellcheck warning.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20220825150703.4074125-6-peter.maydell@linaro.org
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2311,7 +2311,7 @@ LINKS="$LINKS python" LINKS="$LINKS contrib/plugins/Makefile " for f in $LINKS ; do if [ -e "$source_path/$f" ]; then - mkdir -p `dirname ./$f` + mkdir -p "$(dirname ./"$f")" symlink "$source_path/$f" "$f" fi done |