diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 9 |
3 files changed, 11 insertions, 4 deletions
@@ -4,6 +4,7 @@ Li Guanglei <guanglei@cn.ibm.com> Joshua Stone <joshua.i.stone@intel.com> David Smith <dsmith@redhat.com> Graydon Hoare <formerly graydon@redhat.com> +Jim Keniston <jkenisto@us.ibm.com> Roland McGrath <roland@redhat.com> Will Cohen <wcohen@redhat.com> Thang Nguyen <thang.p.nguyen@intel.com> @@ -1,3 +1,8 @@ +2007-09-28 Frank Ch. Eigler <fche@elastic.org> + + * Makefile.in: Regenerated from Jim Keniston's uprobes Makefile.am + changes. + 2007-09-25 Josh Stone <joshua.i.stone@intel.com> * tapsets.cxx (translator_output::~translator_output): Fix mismatched diff --git a/Makefile.in b/Makefile.in index 2653d505..47509606 100644 --- a/Makefile.in +++ b/Makefile.in @@ -61,7 +61,7 @@ DIST_COMMON = README $(am__configure_deps) $(dist_man_MANS) \ $(top_srcdir)/man/stapprobes.tcp.5.in \ $(top_srcdir)/man/stapprobes.udp.5.in AUTHORS COPYING \ ChangeLog INSTALL NEWS compile config.guess depcomp install-sh \ - ltmain.sh missing + missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ @@ -147,7 +147,7 @@ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags -DIST_SUBDIRS = testsuite +DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -196,7 +196,6 @@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ -MYSQL_CONFIG = @MYSQL_CONFIG@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ @@ -320,7 +319,7 @@ SAMPLE_SRC = $(srcdir)/testsuite/systemtap.samples/iotask.stp \ TEST_COV_DIR = coverage # XXX: leaves behind man pages -SUBDIRS = testsuite $(am__append_4) +SUBDIRS = testsuite all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -1496,6 +1495,8 @@ install-data-local: (cd $(srcdir)/runtime; for f in *.[ch]; do $(INSTALL_DATA) -D $$f $(DESTDIR)$(pkgdatadir)/runtime/$$f; done) (cd $(srcdir)/runtime/transport; for f in *.[ch]; \ do $(INSTALL_DATA) -D $$f $(DESTDIR)$(pkgdatadir)/runtime/transport/$$f; done) + (cd $(srcdir)/runtime/uprobes; for f in *.[ch]; \ + do $(INSTALL_DATA) -D $$f $(DESTDIR)$(pkgdatadir)/runtime/uprobes/$$f; done) (cd $(srcdir)/tapset; find . \( -name '*.stp' -o -name README \) -print \ | while read f; do $(INSTALL_DATA) -D $$f $(DESTDIR)$(pkgdatadir)/tapset/$$f; done) |