Merged in stable-1.5. Thanks! Jérémie
On 2 June 2017 at 11:56, Michael Jeanson <[email protected]> wrote: > Turns out that contrary to what is documented some versions of distutils > don't honor the LIBS variable, use LDFLAGS instead. > > Signed-off-by: Michael Jeanson <[email protected]> > --- > bindings/python/Makefile.am | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am > index f6806a8..2ceab03 100644 > --- a/bindings/python/Makefile.am > +++ b/bindings/python/Makefile.am > @@ -25,8 +25,7 @@ BINDINGS_DEPS=setup.py \ > BUILD_FLAGS=CC="$(CC)" \ > CFLAGS="$(GLIB_CFLAGS) $(AM_CFLAGS) $(CFLAGS)" \ > CPPFLAGS="$(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) > $(CPPFLAGS)" \ > - LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS)" \ > - LIBS="$(GLIB_LIBS) $(LIBS)" > + LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) $(LIBS)" > > build-python-bindings.stamp: $(BINDINGS_DEPS) > $(BUILD_FLAGS) $(PYTHON) $(builddir)/setup.py build_ext > -- > 2.7.4 > -- Jérémie Galarneau EfficiOS Inc. http://www.efficios.com _______________________________________________ lttng-dev mailing list [email protected] https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
