mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Fix names for abs_top_{src,build}dir variables
According to the official documentation for autoconf[1], the
correct names for these variables are abs_top_{src,build}dir
rather than abs_top{src,build}dir; in fact, we're already
using the correct names in various places, so let's just make
everything nice and consistent.
[1] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Preset-Output-Variables.html
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
@@ -148,7 +148,7 @@ testSchemaGrammar(const void *opaque)
|
||||
int ret = -1;
|
||||
|
||||
if (virAsprintf(&schema_path, "%s/docs/schemas/%s",
|
||||
abs_topsrcdir, data->schema) < 0)
|
||||
abs_top_srcdir, data->schema) < 0)
|
||||
return -1;
|
||||
|
||||
if (!(data->validator = virXMLValidatorInit(schema_path)))
|
||||
|
||||
Reference in New Issue
Block a user