]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
configure: set source_path only once and make its definition more robust
authorAntonio Ospite <antonio.ospite@collabora.com>
Sun, 26 May 2019 14:47:46 +0000 (16:47 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 26 Jun 2019 16:26:54 +0000 (18:26 +0200)
Since commit 79d77bcd36 (configure: Remove --source-path option,
2019-04-29) source_path cannot be overridden anymore, move it out of the
"default parameters" block since the word "default" may suggest that the
value can change, while in fact it does not.

While at it, only set source_path once and separate the positional
argument of basename with "--" to more robustly cover the case of path
names starting with a dash.

Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Antonio Ospite <antonio.ospite@collabora.com>
Message-Id: <20190526144747.30019-2-ao2@ao2.it>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
configure

index b091b82cb371a6233dbd29f404a43ba3f09a524c..b6962d1381a558f5fc518af41aa14832a829eaac 100755 (executable)
--- a/configure
+++ b/configure
@@ -276,10 +276,10 @@ ld_has() {
     $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1
 }
 
-# default parameters
-source_path=$(dirname "$0")
 # make source path absolute
-source_path=$(cd "$source_path"; pwd)
+source_path=$(cd "$(dirname -- "$0")"; pwd)
+
+# default parameters
 cpu=""
 iasl="iasl"
 interp_prefix="/usr/gnemul/qemu-%M"