From: Sergej P. <ml...@se...> - 2012-05-03 23:03:02
|
Hello, I have to make 2 workarounds to build notion-doc: 1. create 2 missing directories (probably makefile should do it) 2. sed ioncore.exports because of underscores. === cut === mkdir notion-doc/notionconf-onepage mkdir notion-doc/notionnotes-onepage (cd notion-doc && make -j1 TOPDIR=.. all) || true sed -i 's|mod_query.exec_on_merr|mod\\_query.exec\\_on\\_merr|g' notion-doc/ioncore.exports (cd notion-doc && make -j1 TOPDIR=.. all) === cut === |