diff options
author | MC Brown <mc.brown@sun.com> | 2009-03-18 10:04:15 +0000 |
---|---|---|
committer | MC Brown <mc.brown@sun.com> | 2009-03-18 10:04:15 +0000 |
commit | eb0781970479afc7d01441be9b0251af42455881 (patch) | |
tree | dcc8bfc7d0cf0194c90ea503686127187e692adf /sql/Makefile.am | |
parent | 6755c5dd275dddeb941fdeabe0d67e708553e3fd (diff) | |
download | mariadb-git-eb0781970479afc7d01441be9b0251af42455881.tar.gz |
Fixing some issues in the build when using DTrace probes
Probe definition file is now a separate file that is copied during
build to the correct location, this enforces dependency requirements
correctly and allows builds to work when using the current or separate
build directories
Diffstat (limited to 'sql/Makefile.am')
-rw-r--r-- | sql/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/Makefile.am b/sql/Makefile.am index 9ffab8cba52..5a6ec20eed0 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -236,7 +236,7 @@ dtrace_providers: probes_mysql.d echo $(DTRACEPROVIDER) > $@ probes_mysql.d: -$(RM) -f probes_mysql.d - $(CP) $(top_srcdir)/include/probes_mysql.d probes_mysql.d + $(CP) $(top_srcdir)/include/probes_mysql.d.base probes_mysql.d DTRACEDIRS = . ../mysys $(patsubst %,$(top_builddir)/storage/%,@mysql_se_dirs@) |