1From 564901ab78da2b2b1bed92351dc3c102dc0a8154 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Tue, 6 Aug 2019 17:51:39 -0700 4Subject: [PATCH] Set use_tcl to be empty string if tcl is disabled 5 6Upstream-Status: Inappropriate [Cross-compile specific] 7Signed-off-by: Khem Raj <raj.khem@gmail.com> 8--- 9 configure.ac | 2 +- 10 1 file changed, 1 insertion(+), 1 deletion(-) 11 12--- a/configure.ac 13+++ b/configure.ac 14@@ -1540,7 +1540,7 @@ AC_ARG_ENABLE(tcl, 15 [], [enable_tcl=yes]) 16 17 if test "x$enable_tcl" != "xyes"; then 18- use_tcl="No (disabled)" 19+ use_tcl="" 20 fi 21 22 if test "x$use_tcl" = "x"; then 23--- a/Makefile.am 24+++ b/Makefile.am 25@@ -19,7 +19,7 @@ pkginclude_HEADERS = $(top_builddir)/gra 26 man_MANS = graphviz.7 27 28 # $(subdirs) contains the list from: AC_CONFIG_SUBDIRS 29-SUBDIRS = $(subdirs) lib plugin cmd tclpkg doc contrib share graphs rtest tests 30+SUBDIRS = $(subdirs) lib plugin cmd doc contrib share graphs rtest tests 31 32 .PHONY: doxygen 33 doxygen: 34