I realize now that the problem is the line
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 4 Nov 2008 07:12:46 +0000 (07:12 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 4 Nov 2008 07:12:46 +0000 (07:12 +0000)
commitc05cbd882ff8c3f9bdd1099cf5cb42ac08fae7a6
tree821534cc0c09d65db027c432785f2cd78457db55
parent6e93cb36eb5d25e5fbf4670439d12317f33fdec6
I realize now that the problem is the line

    test -f lua/Makefile && cd lua && $(MAKE) install || true

in the target "install-data-local", in bindings/Makefile.am. It forces
execution of bindings/lua/Makefile independently of lua being found or
not. I added that line in my first patch, following perl, python and
ruby build style, but it's not needed after I switched to automake. The
make recursion is controlled by SUBDIRS, which will only contain "lua"
if BUILD_LUA is true.

-- Fidelis Assis

git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1645 a5681a0c-68f1-0310-ab6d-d61299d08faa
bindings/Makefile.am
bindings/lua/Makefile.am
doc/Makefile.am