summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Ronstrom <mikael@mysql.com>2009-02-20 00:56:25 +0100
committerMikael Ronstrom <mikael@mysql.com>2009-02-20 00:56:25 +0100
commit117ae64c9777e96c12ed14a9e2eff367c050cd30 (patch)
treeaa54e86d62c53e378eefd8b3ce29051a2a63df93
parent81f55219c2b3bc04135dc197ac150f084fc7e25a (diff)
downloadmariadb-git-117ae64c9777e96c12ed14a9e2eff367c050cd30.tar.gz
More readability for DTrace commands
-rw-r--r--mysys/Makefile.am2
-rw-r--r--storage/archive/Makefile.am2
-rw-r--r--storage/blackhole/Makefile.am2
-rw-r--r--storage/csv/Makefile.am2
-rw-r--r--storage/example/Makefile.am2
-rw-r--r--storage/federated/Makefile.am2
-rw-r--r--storage/heap/Makefile.am2
-rw-r--r--storage/myisam/Makefile.am2
-rw-r--r--storage/myisammrg/Makefile.am2
9 files changed, 9 insertions, 9 deletions
diff --git a/mysys/Makefile.am b/mysys/Makefile.am
index 045c80f32e4..5c1cf07ce94 100644
--- a/mysys/Makefile.am
+++ b/mysys/Makefile.am
@@ -138,7 +138,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/archive/Makefile.am b/storage/archive/Makefile.am
index 649d84d8152..d9ff3ab1ec4 100644
--- a/storage/archive/Makefile.am
+++ b/storage/archive/Makefile.am
@@ -79,7 +79,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/blackhole/Makefile.am b/storage/blackhole/Makefile.am
index c274ce8f908..fe7da5deed0 100644
--- a/storage/blackhole/Makefile.am
+++ b/storage/blackhole/Makefile.am
@@ -61,7 +61,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/csv/Makefile.am b/storage/csv/Makefile.am
index fa7f77bd746..39c6b83495c 100644
--- a/storage/csv/Makefile.am
+++ b/storage/csv/Makefile.am
@@ -54,7 +54,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/example/Makefile.am b/storage/example/Makefile.am
index bcf519c67c6..a511511fa2e 100644
--- a/storage/example/Makefile.am
+++ b/storage/example/Makefile.am
@@ -62,7 +62,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/federated/Makefile.am b/storage/federated/Makefile.am
index 25db59dc3ce..395f4225fe4 100644
--- a/storage/federated/Makefile.am
+++ b/storage/federated/Makefile.am
@@ -61,7 +61,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/heap/Makefile.am b/storage/heap/Makefile.am
index 5528fec71f1..4aeffe5a5d8 100644
--- a/storage/heap/Makefile.am
+++ b/storage/heap/Makefile.am
@@ -63,7 +63,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/myisam/Makefile.am b/storage/myisam/Makefile.am
index 797d7523301..37b0749b7f2 100644
--- a/storage/myisam/Makefile.am
+++ b/storage/myisam/Makefile.am
@@ -162,7 +162,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper
diff --git a/storage/myisammrg/Makefile.am b/storage/myisammrg/Makefile.am
index 2ae808c2011..9190e37f8cd 100644
--- a/storage/myisammrg/Makefile.am
+++ b/storage/myisammrg/Makefile.am
@@ -52,7 +52,7 @@ dtrace_files:
dtrace_providers:
echo $(DTRACEPROVIDER) > $@
probes_mysql.o: $(DTRACEPROVIDER) $(DTRACEFILES)
- $(DTRACE) $(DTRACEFLAGS) -G -s $< $(DTRACEFILES) -o $@
+ $(DTRACE) $(DTRACEFLAGS) -G -s $(DTRACEPROVIDER) $(DTRACEFILES) -o $@
endif
# Don't update the files from bitkeeper