From 1ac1ef739e4a460b3c872c0ca3aa29779e7c55db Mon Sep 17 00:00:00 2001 From: Ole Hansen <ole@jlab.org> Date: Fri, 6 Oct 2017 13:27:22 -0400 Subject: [PATCH] Fix link failure if EVIO library is external --- SConstruct | 3 +++ podd | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 3e8cce0..1eeacf0 100644 --- a/SConstruct +++ b/SConstruct @@ -45,6 +45,9 @@ import configure from rootcint import rootcint configure.FindROOT(baseenv) +# If EVIO is set up, use it. Otherwise the Podd submodule will build it +# and we will pick it up from there +configure.FindEVIO(baseenv, build_it = False, fail_if_missing = False) bld = Builder(action=rootcint) baseenv.Append(BUILDERS = {'RootCint': bld}) diff --git a/podd b/podd index f91a6ea..5a45ab1 160000 --- a/podd +++ b/podd @@ -1 +1 @@ -Subproject commit f91a6ea6e929b10969f7ce405ac2e409afd8a39a +Subproject commit 5a45ab13968cf9b9eb0fb213bbd58f668160748e -- GitLab