[Bug 71633] Clean API Documentation: should also clean latex
Frans Pop
aragorn at tiscali.nl
Fri Jan 2 01:23:04 UTC 2004
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=71633
------- Additional Comments From aragorn at tiscali.nl 2004-01-02 01:22 -------
Sorry, I noticed one final problem (and a fairly basic one): the files currently are not actually deleted.
Cause is that the wildcard is not expanded because the filesspecification is quoted (see parts/doxygen/doxygenpart.cpp, DoxygenPart::slotDoxClean()).
Current command is:
rm -f '<project directory>/html/*'
This should be:
rm -f <project directory>/html/*
or (if you want to allow for spaces in the path):
rm -f '/home/fjp/kdevelop/sigcreate/xml'/*
More information about the KDevelop-devel
mailing list