From 2726c24c99952dc53a0d5754b13711d0c1007c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 16 Aug 2003 18:31:50 +0000 Subject: [PATCH] don't try doing local checks if CHECK_LOCAL is set to no-check-local git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12554 ec53bebd-3082-4978-b11e-865c3cabbd6b --- cf/Makefile.am.common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cf/Makefile.am.common b/cf/Makefile.am.common index e79341c61..1669aacea 100644 --- a/cf/Makefile.am.common +++ b/cf/Makefile.am.common @@ -87,7 +87,8 @@ install-build-headers:: $(include_HEADERS) $(build_HEADERZ) all-local: install-build-headers check-local:: - @if test '$(CHECK_LOCAL)'; then \ + @if test '$(CHECK_LOCAL)' = "no-check-local"; then \ + foo=''; elif test '$(CHECK_LOCAL)'; then \ foo='$(CHECK_LOCAL)'; else \ foo='$(PROGRAMS)'; fi; \ if test "$$foo"; then \ @@ -204,6 +205,7 @@ if KRB5 LIB_krb5 = $(top_builddir)/lib/krb5/libkrb5.la \ $(top_builddir)/lib/asn1/libasn1.la LIB_gssapi = $(top_builddir)/lib/gssapi/libgssapi.la +LIB_tsasl = $(top_builddir)/lib/tsasl/libtsasl.la endif if DCE