diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-07 14:17:43 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-28 10:01:44 +0200 |
| commit | 29a8238510df27080b0ffa92c58400412ce19daa (patch) | |
| tree | 0cdadc1882e0b91999fc4a3a2c1048b467481daf | |
| parent | a04f33727cea092dc71be32745e8964f62fb8104 (diff) | |
| download | focaccia-qemu-29a8238510df27080b0ffa92c58400412ce19daa.tar.gz focaccia-qemu-29a8238510df27080b0ffa92c58400412ce19daa.zip | |
configure: remove unnecessary mkdir -p
It is already included in the symlink shell function. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rwxr-xr-x | configure | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure b/configure index 08bf24b689..b9bd008592 100755 --- a/configure +++ b/configure @@ -1775,7 +1775,6 @@ fi for target in $target_list; do target_dir="$target" target_name=$(echo $target | cut -d '-' -f 1)$EXESUF - mkdir -p "$target_dir" case $target in *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;; *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;; |