* ./bootstrap:

- Change: In Makefile.package, the "dvi" target no longer exists
        for crlcore.
This commit is contained in:
Jean-Paul Chaput 2012-12-03 15:10:56 +00:00
parent 266906798b
commit c7c812445f
2 changed files with 2 additions and 3 deletions

View File

@ -61,8 +61,7 @@ install: FORCE
cd build.dir/$$tool; \
makeArgs=""; \
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=OFF"; \
if [ "$$tool" = "crlcore" \
-o "$$tool" = "stratus1" ]; then \
if [ "$$tool" = "stratus1" ]; then \
makeArgs="dvi safepdf html"; \
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=ON"; \
fi; \

View File

@ -582,7 +582,7 @@ class ProjectBuilder:
# Remove unpublisheds (yet) tools/files.
for item in self._packageExcludes:
command = [ "/bin/rm", "-r", os.path.join(self._archiveDir,item) ]
command = [ "/bin/rm", "-rf", os.path.join(self._archiveDir,item) ]
self._execute ( command, "rm of %s failed" % item)
# Adds files neededs only for packaging purpose.