Don't install any files from automation/* if no automation support is

available.

Originally committed to SVN as r2205.
This commit is contained in:
Amar Takhar 2008-06-16 04:45:59 +00:00
parent 59a5e8f3b3
commit 62f6d8a4c7
1 changed files with 5 additions and 1 deletions

View File

@ -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)