summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/grc_gruel.m43
-rw-r--r--run_tests.sh.in5
2 files changed, 6 insertions, 2 deletions
diff --git a/config/grc_gruel.m4 b/config/grc_gruel.m4
index 0ef2bac2c..365edbde0 100644
--- a/config/grc_gruel.m4
+++ b/config/grc_gruel.m4
@@ -26,9 +26,10 @@ AC_DEFUN([GRC_GRUEL],[
dnl yes : if the --enable code passed muster and all dependencies are met
dnl no : otherwise
if test $passed != with; then
- dnl how and where to find INCLUDES and LA
+ dnl how and where to find INCLUDES and LA and such
gruel_INCLUDES="-I\${abs_top_srcdir}/gruel/src/include"
gruel_LA="\${abs_top_builddir}/gruel/src/lib/libgruel.la"
+ gruel_LIBDIRPATH="\${abs_top_builddir}/gruel/src/lib:\${abs_top_builddir}/gruel/src/lib/.libs"
fi
AC_CONFIG_FILES([\
diff --git a/run_tests.sh.in b/run_tests.sh.in
index 8f467fd2e..69fbe26dc 100644
--- a/run_tests.sh.in
+++ b/run_tests.sh.in
@@ -59,13 +59,16 @@ export PYTHONPATH
# Where to find omnithread library files
gromnidir=@omnithread_LIBDIRPATH@
+# Where to find gruel library files
+grueldir=@gruel_LIBDIRPATH@
+
# Where to find gnuradio core's library files
grcoredir=@gnuradio_core_LIBDIRPATH@
# Construct search path for python modules
# Check each one to make sure it's not "" before adding
grlibdir=""
-for dir in $gromnidir $grcoredir
+for dir in $gromnidir $grcoredir $grueldir
do
if [ "$dir" != "" ]
then