From fbb43fb72b207ea7b0b29e1c2465acb2188cc108 Mon Sep 17 00:00:00 2001 From: Jeremy Hinegardner Date: Mon, 23 Jun 2008 21:21:04 -0600 Subject: [PATCH] fix building of Makefiles in packaging subtree When ./configure is run, the Makfiles in the packaging subtree's Makefiles are not created. As a result, the 'make dist' command will fail when it attempts to recurse through ./packaging. Signed-off-by: Jeremy Hinegardner --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 237b8c6..64550cc 100644 --- a/configure.ac +++ b/configure.ac @@ -349,5 +349,5 @@ AC_SUBST(ADDITIONAL_OBJECTS) AC_SUBST(TINYPROXY_CONFIG_DIR) AC_SUBST(TINYPROXY_CONFIG_FILE) -AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile packaging/Makefile packaging/fedora/Makefile packaging/fedora/tinyproxy.spec]) AC_OUTPUT