diff options
author | Joerg Bruehe <joerg@mysql.com> | 2009-12-16 14:11:20 +0100 |
---|---|---|
committer | Joerg Bruehe <joerg@mysql.com> | 2009-12-16 14:11:20 +0100 |
commit | 6ddab77da26d4529db403e573298f927d315adeb (patch) | |
tree | 3c649eaeecff14c257ff448de3de4d314e1ba4c9 /storage/archive | |
parent | d11111f1a694fdec2464f176fe0f0f95f9480d93 (diff) | |
parent | 81d9615de8781c278635acb4e7980966b1963f85 (diff) | |
download | mariadb-git-6ddab77da26d4529db403e573298f927d315adeb.tar.gz |
Automerge the build fixes of 5.5.0-m2 back into the tree.
Diffstat (limited to 'storage/archive')
-rw-r--r-- | storage/archive/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/storage/archive/Makefile.am b/storage/archive/Makefile.am index 143d684025e..bb88ff2e8d1 100644 --- a/storage/archive/Makefile.am +++ b/storage/archive/Makefile.am @@ -77,9 +77,12 @@ libarchive_a_DEPENDENCIES = probes_mysql.o dtrace_files dtrace_providers ha_archive_la_LIBADD = probes_sh_mysql.o ha_archive_la_DEPENDENCIES = probes_sh_mysql.o dtrace_shared_files dtrace_providers -CLEANFILES = $(DTRACEPROVIDER) dtrace_files dtrace_providers dtrace_shared_files +CLEANFILES = $(DTRACEPROVIDER) dtrace_files dtrace_providers dtrace_shared_files dtrace_sources DTRACEFILES = libarchive_a-ha_archive.o DTRACESHAREDFILES = .libs/ha_archive_la-ha_archive.o +# Hack: We "depend" on ".libs/" but have no rule for it, +# but it is created as a byproduct of the ".lo" +DTRACESHAREDDEPEND = ha_archive_la-ha_archive.lo DTRACEPROVIDER = probes_mysql.d dtrace_files: @@ -93,7 +96,7 @@ probes_mysql.d: $(CP) $(top_srcdir)/include/probes_mysql.d.base probes_mysql.d echo timestamp > dtrace_sources -probes_sh_mysql.o: $(DTRACEPROVIDER) $(DTRACESHAREDFILES) +probes_sh_mysql.o: $(DTRACEPROVIDER) $(DTRACESHAREDDEPEND) $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACESHAREDFILES) -o $@ probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES) |