From bc47e3eeb7a046a80faf9ba9ea4ccedf111e33a7 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Fri, 4 Nov 2011 18:39:35 +0000 Subject: Get rid of fake-install Instead, use $(BUILDTOP)/plugins as the plugin base for tests. For each real plugin module, create a link in the parent directory if we're doing a shared-library build--so built KDB modules can be found in plugins/kdb, preauth modules in plugins/preauth, etc.. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25436 dc483132-0cff-0310-8789-dd5450dbe970 --- src/Makefile.in | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) (limited to 'src/Makefile.in') diff --git a/src/Makefile.in b/src/Makefile.in index acd27baf08..5b2d525ce6 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -80,27 +80,12 @@ install-headers-prerecurse: install-headers-mkdirs # install:: # $(MAKE) $(MFLAGS) install.man -fake-install: runenv.py - $(RM) -r $(FAKEPREFIX) - @for i in $(INSTALLMKDIRS); do \ - $(srcdir)/config/mkinstalldirs util/fakedest$$i; \ - done - (w=`pwd`; cd util && $(MAKE) install DESTDIR="$$w/util/fakedest") - (w=`pwd`; cd lib && $(MAKE) install DESTDIR="$$w/util/fakedest") - (w=`pwd`; cd plugins/kdb/db2 && $(MAKE) install DESTDIR="$$w/util/fakedest") - if test -r plugins/preauth/pkinit/Makefile; then \ - (w=`pwd`; cd plugins/preauth/pkinit && $(MAKE) install DESTDIR="$$w/util/fakedest"); \ - fi - -# (w=`pwd`; cd plugins/locate/python && $(MAKE) install DESTDIR="$$w/util/fakedest") - TAGS: $(SRCS) etags $(SRCS) clean-:: clean-windows clean-unix:: $(RM) *.o core krb5-config - $(RM) -r util/fakedest mostlyclean: clean @@ -589,12 +574,12 @@ krb5-config: $(srcdir)/krb5-config.in config.status # $(PURE) or $(LDFLAGS) in case someone changes config/shlib.conf check-unix:: krb5-config $(SHELL) $(srcdir)/t_krbconf -check-prerecurse: fake-install +check-prerecurse: runenv.py # Create a test realm and spawn a shell in an environment pointing to it. # If CROSSNUM is set, create that many fully connected test realms and # point the shell at the first one. -testrealm: fake-install +testrealm: runenv.py PYTHONPATH=$(top_srcdir)/util $(PYTHON) $(srcdir)/util/testrealm.py \ $(CROSSNUM) -- cgit