2013/8/29 mathog <mathog@...1176...>:
Just built branch lp988601 for the first time since Kris merged in changes from Trunk on 8/16. It seems to work fine, but there is a new message at the beginning:
Unable to find: DialogScript ** (inkscape:14139): WARNING **: Unknown verb name: DialogScript
Is that something old that has been partly removed, or is it something new that has been partly implemented?
I recently removed the non-functional script dialog. However, its verb may still be referenced in /usr/local/share/inkscape/ui/menus-bars.xml. Running 'make install' should fix the warning.
On the bzr update there was a warning that src/extension/script could not be removed because it was not empty. Related to this message?
This is related to other removals of dead code. The message means that you have an unversioned file in src/extension/script. For example if you configured for an in-place build, the directory could contain a generated makefile. You can remove the directory along with the generated file. Remember to re-run configure after that. To avoid such issues in the future, configure in a different folder (VPATH build), e.g.:
./autogen.sh mkdir build cd build ../configure make -j4
Regards, Krzysztof