diff mbox series

configure: fix handling of --docdir parameter

Message ID 20201015190742.270629-1-brogers@suse.com
State Superseded
Headers show
Series configure: fix handling of --docdir parameter | expand

Commit Message

Bruce Rogers Oct. 15, 2020, 7:07 p.m. UTC
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 <brogers@suse.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé Oct. 15, 2020, 7:50 p.m. UTC | #1
On 10/15/20 9:07 PM, Bruce Rogers wrote:
> 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 <brogers@suse.com>

> ---

>   configure | 2 +-

>   1 file changed, 1 insertion(+), 1 deletion(-)


Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
diff mbox series

Patch

diff --git a/configure b/configure
index f839c2a557..07acd01a25 100755
--- a/configure
+++ b/configure
@@ -971,7 +971,7 @@  for opt do
   ;;
   --with-suffix=*) qemu_suffix="$optarg"
   ;;
-  --docdir=*) qemu_docdir="$optarg"
+  --docdir=*) docdir="$optarg"
   ;;
   --sysconfdir=*) sysconfdir="$optarg"
   ;;