From: Bruce Rogers Date: Thu, 15 Oct 2020 19:07:42 +0000 (-0600) Subject: configure: fix handling of --docdir parameter X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c6502638075557ff38fbb874af32f91186b667eb;p=qemu.git configure: fix handling of --docdir parameter Commit ca8c0909f01 changed qemu_docdir to be docdir, then later uses the qemu_docdir name in the final assignment. Unfortunately, one instance of qemu_docdir was missed: the one which comes from the --docdir parameter. This patch restores the proper handling of the --docdir parameter. Fixes: ca8c0909f01 ("configure: build docdir like other suffixed directories") Signed-off-by: Bruce Rogers Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20201015190742.270629-1-brogers@suse.com> Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index f36a82ed01..ed81af9c04 100755 --- a/configure +++ b/configure @@ -969,7 +969,7 @@ for opt do ;; --with-suffix=*) qemu_suffix="$optarg" ;; - --docdir=*) qemu_docdir="$optarg" + --docdir=*) docdir="$optarg" ;; --sysconfdir=*) sysconfdir="$optarg" ;; @@ -5776,7 +5776,6 @@ fi qemu_confdir="$sysconfdir/$qemu_suffix" qemu_moddir="$libdir/$qemu_suffix" qemu_datadir="$datadir/$qemu_suffix" -qemu_docdir="$docdir/$qemu_suffix" qemu_localedir="$datadir/locale" qemu_icondir="$datadir/icons" qemu_desktopdir="$datadir/applications"