X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lttng_ivc%2Futils%2Fproject.py;h=fbd7f14ac4d5cfabbc72aa77d3677c6826c13735;hb=e5cbfcca39522bd237e4611ffaaab8a8550640ef;hp=7adf5add7e4e2b96b2a3d834f867c5e8064a9967;hpb=bde0c5403b98eb937494cfa22a16aed165213eb0;p=deliverable%2Flttng-ivc.git diff --git a/lttng_ivc/utils/project.py b/lttng_ivc/utils/project.py index 7adf5ad..fbd7f14 100644 --- a/lttng_ivc/utils/project.py +++ b/lttng_ivc/utils/project.py @@ -313,6 +313,11 @@ class Lttng_ust(Project): super(Lttng_ust, self).__init__(label=label, git_path=git_path, sha1=sha1, tmpdir=tmpdir) self.custom_configure_flags.extend(['--disable-man-pages']) + self.custom_configure_flags.extend(['--enable-python-agent']) + self.custom_configure_flags.extend(['--enable-java-agent-jul']) + + jul_path = os.path.join(self.installation_path, "share/java") + self.add_special_env_variable("CLASSPATH", "{}".format(jul_path)) class Lttng_tools(Project):