diff options
author | Georgi Kodinov <joro@sun.com> | 2010-02-12 18:28:35 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2010-02-12 18:28:35 +0200 |
commit | 792fc9f7844575675206f873a0fa1d6e7fb8ad4f (patch) | |
tree | 77d9d42655f4fa3afa8bb69d7aa15e174b617cad /storage/ndb | |
parent | 6f78ef71d485fb3968355941860d012fc17a9c59 (diff) | |
download | mariadb-git-792fc9f7844575675206f873a0fa1d6e7fb8ad4f.tar.gz |
Bug #35250: readline check breaks when doing vpath build
Fixed several (obvious) places that don't work with vpath
build.
Diffstat (limited to 'storage/ndb')
-rw-r--r-- | storage/ndb/src/common/util/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/common/util/Makefile.am b/storage/ndb/src/common/util/Makefile.am index 5379a425c49..5cf02fed12f 100644 --- a/storage/ndb/src/common/util/Makefile.am +++ b/storage/ndb/src/common/util/Makefile.am @@ -37,7 +37,7 @@ testBitmask_LDFLAGS = @ndb_bin_am_ldflags@ \ testBitmask.cpp : Bitmask.cpp rm -f testBitmask.cpp - @LN_CP_F@ Bitmask.cpp testBitmask.cpp + @LN_CP_F@ $(srcdir)/Bitmask.cpp testBitmask.cpp testBitmask.o: $(testBitmask_SOURCES) $(CXXCOMPILE) -c $(INCLUDES) -D__TEST_BITMASK__ $< |