Fix paths used in 'make run'.

In particular ACP_PATHS_DIR, ACP_PROFILES_DIR ended up pointing to the
build directory, despite only existing in the source directory.

I also adjusted PIPEWIRE_CONFIG_DIR to be explicit about referencing
the build directory, given that the other environment variables are
doing so.

Fixes: #448
This commit is contained in:
Andres Freund 2020-12-06 12:38:01 -08:00 committed by Wim Taymans
parent 78e7a45e6e
commit 1e89e7559b
2 changed files with 4 additions and 3 deletions

View file

@ -306,6 +306,7 @@ pipewire_inc = include_directories('src')
makedata = configuration_data()
makedata.set('BUILD_ROOT', meson.build_root())
makedata.set('SOURCE_ROOT', meson.source_root())
makedata.set('VERSION', pipewire_version)
if version_arr.length() == 4
makedata.set('TAG', 'HEAD')