Index: run-local =================================================================== --- run-local (revision 4675) +++ run-local (working copy) @@ -22,7 +22,9 @@ cd .. # The user may have already run ./configure and make if [ ! -f config.status ]; then - ./configure + ./configure --enable-dev-mode + make menuselect.makeopts + menuselect/menuselect --enable DONT_OPTIMIZE --enable TEST_FRAMEWORK fi make make install samples DESTDIR="$HERE/astroot" Index: lib/python/asterisk/asterisk.py =================================================================== --- lib/python/asterisk/asterisk.py (revision 4675) +++ lib/python/asterisk/asterisk.py (working copy) @@ -258,6 +258,8 @@ for cat in self._ast_conf.categories: if cat.name == "directories": for (var, val) in cat.options: + if self.localtest_root: # e.g. /tmp/ast_test_ABC + val = self.localtest_root + val # e.g. + /usr/lib/... self.directories[var] = val def start(self, deps=None):