From 972fb0c2d57783371ded7aa321ca8b151e5c2f44 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 2 May 2010 18:18:21 +1200 Subject: [PATCH] Prevent automake building empty AuthTypes.cc --- src/auth/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/Makefile.am b/src/auth/Makefile.am index 470ece2779..2c0e9eaa5e 100644 --- a/src/auth/Makefile.am +++ b/src/auth/Makefile.am @@ -71,7 +71,7 @@ libnegotiate_la_SOURCES = \ negotiate/negotiateUserRequest.h AuthType.cc: AuthType.h $(top_srcdir)/src/mk-string-arrays.awk - $(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk < $(srcdir)/AuthType.h > $@ + $(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk < $(srcdir)/AuthType.h > $@ || (rm -f $@ ; exit 1) TESTS += testHeaders -- 2.47.3