From 40993c68daafb1c14f684b5e9dbd839eaa30406e Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Fri, 26 Mar 2021 00:31:40 +0100 Subject: [PATCH] Fix wrapper script for starting jack_mixer in source dir Signed-off-by: Christopher Arndt --- tools/jack_mixer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/jack_mixer.sh b/tools/jack_mixer.sh index e7a85a3..de91c9f 100755 --- a/tools/jack_mixer.sh +++ b/tools/jack_mixer.sh @@ -1,6 +1,6 @@ #!/bin/bash -if ! ls -a jack_mixer/_jack_mixer.*.so >/dev/null 2>&1 ; then +if ! ls -a builddir/jack_mixer/_jack_mixer.*.so >/dev/null 2>&1 ; then echo "'_jack_mixer' extension module not found." echo "This script is meant to be run from a jack_mixer source directory" echo "Make sure that you have built jack_mixer with meson and created" @@ -8,6 +8,6 @@ if ! ls -a jack_mixer/_jack_mixer.*.so >/dev/null 2>&1 ; then exit 1 fi -export PYTHONPATH=".:$PYTHONPATH" +export PYTHONPATH=".:./builddir:$PYTHONPATH" export LOCALEDIR="data/locale" exec python -m jack_mixer "$@" -- 2.11.4.GIT