diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-08-23 11:27:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:36 -0500 |
commit | 7a76b20d4feaf6f6ff28eda8dcc2e8704de07df8 (patch) | |
tree | 2c926b22f88bd712ed4adeb8b0f77bb26fd137d4 | |
parent | 461ff1ecc9a91f7e9df0476c757865fc69e2228c (diff) | |
download | samba-7a76b20d4feaf6f6ff28eda8dcc2e8704de07df8.tar.gz samba-7a76b20d4feaf6f6ff28eda8dcc2e8704de07df8.tar.bz2 samba-7a76b20d4feaf6f6ff28eda8dcc2e8704de07df8.zip |
r17747: ldb's make test should not try to install something
metze
(This used to be commit ccf9ad0d2ff8388dd76a36426657773a59e6c316)
-rw-r--r-- | source4/lib/ldb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index f164e84c3b..a4801c33b4 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -131,10 +131,10 @@ distclean: clean rm -f ldb.pc rm -f Makefile -installcheck: install tests +test: all for t in $(TESTS); do echo STARTING $${t}; $(srcdir)/tests/$${t} || exit 1; done -test: installcheck +installcheck: install test install: all mkdir -p $(includedir) $(libdir)/pkgconfig $(libdir) $(bindir) |