From 7bd54c66dde5d30c587078d51d3a1c57e881974a Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 20 Oct 2007 20:43:48 +0000 Subject: [PATCH] don't let po/Makefile.in stop configure when "./configure.sh --without-gtk" is being run. (#389, mezz) --- configure.ac | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index a6379942d..4a76bebbc 100644 --- a/configure.ac +++ b/configure.ac @@ -201,14 +201,17 @@ AC_CONFIG_FILES([Makefile beos/Makefile cli/Makefile daemon/Makefile - gtk/Makefile libtransmission/Makefile libtransmission/version.h third-party/Makefile macosx/Makefile wx/Makefile - wx/images/Makefile - po/Makefile.in]) + wx/images/Makefile]) + +if test "x$use_gtk" = "xyes"; then + AC_CONFIG_FILES([gtk/Makefile + po/Makefile.in]) +fi ac_configure_args="$ac_configure_args --enable-static --disable-shared -q" AC_OUTPUT