Re: [PATCH] configure: Support empty prefixes

2022-02-22 Thread Joshua Seaton
Hi Paolo, Thanks for the quick response (and apologies about my delayed one). My project has automated scripts to build a number of other tools. The way we conventionally go about it is ``` path/to/configure '--prefix=' ... make make install DEST_DIR=$destdir ``` We currently build an earlier

Re: [PATCH] configure: Support empty prefixes

2022-02-17 Thread Paolo Bonzini
On 2/17/22 19:42, Joshua Seaton wrote: At least as of v5 (before the meson build), empty `--prefix` values were supported; this seems to have fallen out along the way. This change reintroduces support. What is the usecase exactly? QEMU supports relocatable installation so if you want you can

[PATCH] configure: Support empty prefixes

2022-02-17 Thread Joshua Seaton
At least as of v5 (before the meson build), empty `--prefix` values were supported; this seems to have fallen out along the way. This change reintroduces support. Tested locally with empty and non-empty values of `--prefix`. Signed-off-by: Joshua Seaton --- configure | 33