<div dir="ltr"><div><div><div><div><div>In the log there is:<br><br>/Applications/Xcode.app/Contents/Developer/usr/bin/make xml/menudata.xml<br>GISRC=... LC_ALL=C python core/toolboxes.py > xml/menudata.xml<br>/Applications/Xcode.app/Contents/Developer/usr/bin/make xml/module_tree_menudata.xml<br>GISRC=... LC_ALL=C python core/toolboxes.py "module_tree" > xml/module_tree_menudata.xml<br><br></div>But in my log I see:<br><br>make xml/menudata.xml<br>make[1]: Entering directory '/home/vpetras/dev/grass/gcc_trunk/gui/wxpython'<br>GISRC=... LC_ALL=C python core/toolboxes.py > xml/menudata.xml<br>GISRC=... LC_ALL=C python core/toolboxes.py "validate" xml/menudata.xml<br>make[1]: Leaving directory '/home/vpetras/dev/grass/gcc_trunk/gui/wxpython'<br>make xml/module_tree_menudata.xml<br>make[1]: Entering directory '/home/vpetras/dev/grass/gcc_trunk/gui/wxpython'<br>GISRC=... LC_ALL=C python core/toolboxes.py "module_tree" > xml/module_tree_menudata.xml<br>GISRC=... LC_ALL=C python core/toolboxes.py "validate" xml/module_tree_menudata.xml<br>make[1]: Leaving directory '/home/vpetras/dev/grass/gcc_trunk/gui/wxpython'<br><br></div>One small difference are the lines "Leaving directory". Perhaps different version of make?<br><br></div>But the bigger issue is that I have two "toolboxes.py "validate" xml/...xml" lines and I don't see them in the Michael's Mac OS log. They are in the Makefile:<br><br>xml/menudata.xml: core/toolboxes.py<br>    $(call run_grass,$(PYTHON) $< > $@)<br>    $(call run_grass,$(PYTHON) $< "validate" $@)<br><br>xml/module_tree_menudata.xml: core/toolboxes.py<br>    $(call run_grass,$(PYTHON) $< "module_tree" > $@)<br>    $(call run_grass,$(PYTHON) $< "validate" $@)<br><br></div>The "validate" step is supposed to create an error during compilation in case something is wrong with the generated XMLs. But it seems that it is not executed on Michael's Mac. Different Makefiles? Different make?<br><br></div>Unfortunately, the Travis CI log does not show anything (due to the workaround for Mac?), so we can't compare.<br></div>