wp-uninstalled.sh: print the build directory to avoid confusion

Now that the build directory is found automatically, if it so
happens that you have more than one build dir in your tree,
'make run' may not run the version that you expect...
This commit is contained in:
George Kiagiadakis 2021-10-15 14:00:42 +03:00
parent 7de841fa96
commit bc0b43ac4d

View file

@ -43,6 +43,8 @@ if [ ! -d ${BUILDDIR} ]; then
exit 1
fi
echo "Using build directory: ${BUILDDIR}"
export WIREPLUMBER_MODULE_DIR="${BUILDDIR}/modules"
export WIREPLUMBER_CONFIG_DIR="${SOURCEDIR}/src/${CONFIGDIR}"
export WIREPLUMBER_DATA_DIR="${SOURCEDIR}/src"