From 9a848d5ba66b080b8d8c324e3c9a6917a5c36751 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 4 Dec 2016 18:26:30 -0500 Subject: Fix configuration --- libs/evoral/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/evoral/wscript b/libs/evoral/wscript index 84d822a4bd..794193aac5 100644 --- a/libs/evoral/wscript +++ b/libs/evoral/wscript @@ -43,7 +43,8 @@ def configure(conf): autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2') autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0') autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.14.0') - autowaf.check_pkg(conf, 'libpbd-4', uselib_store='LIBPBD', atleast_version='4.0.0', mandatory=True) + if not autowaf.is_child(): + autowaf.check_pkg(conf, 'libpbd-4', uselib_store='LIBPBD', atleast_version='4.0.0', mandatory=True) # Boost headers autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp') -- cgit v1.2.3