From 62f6d8a4c7a730f0f89d616acd570a472bd00706 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Mon, 16 Jun 2008 04:45:59 +0000 Subject: [PATCH] Don't install any files from automation/* if no automation support is available. Originally committed to SVN as r2205. --- automation/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/automation/Makefile.am b/automation/Makefile.am index e9c9d2b2f..e87a0ee23 100644 --- a/automation/Makefile.am +++ b/automation/Makefile.am @@ -88,7 +88,11 @@ data_auto4_ruby = \ include/karaoke.rb \ include/utils.rb -nobase_automation_DATA = $(data_general) +nobase_automation_DATA = + +if HAVE_AUTOMATION +nobase_automation_DATA += $(data_general) +endif if HAVE_AUTO4_LUA nobase_automation_DATA += $(data_auto4_lua)