diff options
author | Georgi Kodinov <joro@sun.com> | 2010-03-09 17:51:31 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2010-03-09 17:51:31 +0200 |
commit | d63b0a5c62c280d7199157f61d708ff45cb72800 (patch) | |
tree | e0c9c3ec68d50dbe8fd46a608ddb2aaf82867067 /mysql-test/Makefile.am | |
parent | 6d701d3e9cf7d426967962feaa3c6dced62aee24 (diff) | |
download | mariadb-git-d63b0a5c62c280d7199157f61d708ff45cb72800.tar.gz |
Bug #35250: readline check breaks when doing vpath build
MySQL uses two source layouts when building : the bzr
layout and the source package layout.
The previous fix for bug 35250 contained 1 change that is
valid for both modes and a number of changes that are valid
only for the bzr source layout.
The important thing was to fix the source package layout.
And for this the change in configure.in was sufficient.
It's not trivial (and not requested by this bug) to support
VPATH builds from the bzr trees.
This is why the other changes are reverted and the change to
fix the VPATH build for source distributions is left intact.
Diffstat (limited to 'mysql-test/Makefile.am')
-rw-r--r-- | mysql-test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/Makefile.am b/mysql-test/Makefile.am index 31770592d53..b1d0e85c70e 100644 --- a/mysql-test/Makefile.am +++ b/mysql-test/Makefile.am @@ -130,12 +130,12 @@ uninstall-local: # mtr - a shortcut for executing mysql-test-run.pl mtr: $(RM) -f mtr - $(LN_S) $(srcdir)/mysql-test-run.pl mtr + $(LN_S) mysql-test-run.pl mtr # mysql-test-run - a shortcut for executing mysql-test-run.pl mysql-test-run: $(RM) -f mysql-test-run - $(LN_S) $(srcdir)/mysql-test-run.pl mysql-test-run + $(LN_S) mysql-test-run.pl mysql-test-run # Don't update the files from bitkeeper %::SCCS/s.% |