From: oetiker Date: Tue, 4 Nov 2008 07:12:46 +0000 (+0000) Subject: I realize now that the problem is the line X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=sidebyside;h=c05cbd882ff8c3f9bdd1099cf5cb42ac08fae7a6;hp=c05cbd882ff8c3f9bdd1099cf5cb42ac08fae7a6;p=rrdtool.git 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 ---