diff options
author | unknown <jimw@mysql.com> | 2006-04-13 13:01:57 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2006-04-13 13:01:57 -0700 |
commit | d23064a668e555c7b87c526b2e2bd76dd6f9d83a (patch) | |
tree | c1e9f2b1d43080af258cb346f4df22c09ced3b56 /unittest/examples | |
parent | c323e60c46c73efde0efea3ff056f83e17cb9009 (diff) | |
download | mariadb-git-d23064a668e555c7b87c526b2e2bd76dd6f9d83a.tar.gz |
Fix 'make distcheck' problems with new unittest code, and a small
portability problem.
BitKeeper/etc/ignore:
Use a wildcard to ignore all unittest *.t files
unittest/Makefile.am:
Add unit to DISTCLEANFILES, and make sure to copy it from srcdir
unittest/examples/Makefile.am:
Use srcdir to find mytap header
unittest/mysys/Makefile.am:
Use srcdir to find mytap header
unittest/mytap/t/Makefile.am:
Use builddir for finding mytap library
unittest/mytap/tap.c:
Fix portability problem (declarations after code in C code)
Diffstat (limited to 'unittest/examples')
-rw-r--r-- | unittest/examples/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/examples/Makefile.am b/unittest/examples/Makefile.am index 2e48ab8d9b3..7990777d5b6 100644 --- a/unittest/examples/Makefile.am +++ b/unittest/examples/Makefile.am @@ -1,5 +1,5 @@ AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include -AM_CPPFLAGS += -I$(top_builddir)/unittest/mytap +AM_CPPFLAGS += -I$(top_srcdir)/unittest/mytap AM_LDFLAGS = -L$(top_builddir)/unittest/mytap |