mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Ensured that we apply DTrace script on both object files potentially
produced by libtool
This commit is contained in:
parent
ae3bafc9f8
commit
1ad9b0fa4f
1 changed files with 7 additions and 1 deletions
|
@ -248,7 +248,13 @@ probes_all.o: probes_mysql.d $(DTRACEFILES_DEPEND)
|
|||
# Can't depend directly on .libs/*.o, because there is no generated rule for
|
||||
# that in the Makefile; it is a byproduct of *.lo
|
||||
probes_libndb.o: probes_mysql.d libndb_la-ha_ndbcluster.lo
|
||||
$(DTRACE) $(DTRACEFLAGS) -G -s probes_mysql.d .libs/libndb_la-ha_ndbcluster.o -o $@
|
||||
if test -f .libs/libndb_la-ha_ndbcluster.o ; then
|
||||
$(DTRACE) $(DTRACEFLAGS) -G -s probes_mysql.d .libs/libndb_la-ha_ndbcluster.o -o $@
|
||||
endif
|
||||
if test -f libndb_la-ha_ndbcluster.o ; then
|
||||
$(DTRACE) $(DTRACEFLAGS) -G -s probes_mysql.d libndb_la-ha_ndbcluster.o -o $@
|
||||
endif
|
||||
|
||||
endif
|
||||
|
||||
# Don't update the files from bitkeeper
|
||||
|
|
Loading…
Reference in a new issue