X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=cli%2FMakefile.am;h=3cd2a1168bf9c6aa760be97bb5d559672170d71a;hb=9ffc0257721b043158a502d3fcd7eb275630a95b;hp=f2a180d67f8df4c86db40074738a54d75b43fcf8;hpb=4817cd5b305ff6d3153e97ba584ecd363832714c;p=babeltrace.git diff --git a/cli/Makefile.am b/cli/Makefile.am index f2a180d6..3cd2a116 100644 --- a/cli/Makefile.am +++ b/cli/Makefile.am @@ -34,7 +34,7 @@ babeltrace_bin_SOURCES = \ babeltrace_bin_LDFLAGS = $(LD_NO_AS_NEEDED) # Add all the convenience libraries used by Babeltrace plugins and the -# library. They will be used when embedding plugins (BUILT_IN_PLUGINS), +# library. They will be used when embedding plugins (--enable-built-in-plugins), # otherwise we're looking after multiple definitions of the same symbols if # a plugin's archive (.a) includes the convenience library because # we're using --whole-archive below (needed to make sure the linker does @@ -48,7 +48,7 @@ babeltrace_bin_LDADD = \ $(top_builddir)/plugins/libctfcopytrace/libctfcopytrace.la \ $(POPT_LIBS) -if BUILT_IN_PLUGINS +if ENABLE_BUILT_IN_PLUGINS # Takes a plugin name and outputs the needed LDFLAGS to embed it. # # The --whole-archive option is important here. From the GNU linker's