* ./bootstrap:
- Change: In Makefile.package, the "dvi" target no longer exists for crlcore.
This commit is contained in:
parent
266906798b
commit
c7c812445f
|
@ -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; \
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue