* ./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; \
|
cd build.dir/$$tool; \
|
||||||
makeArgs=""; \
|
makeArgs=""; \
|
||||||
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=OFF"; \
|
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=OFF"; \
|
||||||
if [ "$$tool" = "crlcore" \
|
if [ "$$tool" = "stratus1" ]; then \
|
||||||
-o "$$tool" = "stratus1" ]; then \
|
|
||||||
makeArgs="dvi safepdf html"; \
|
makeArgs="dvi safepdf html"; \
|
||||||
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=ON"; \
|
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=ON"; \
|
||||||
fi; \
|
fi; \
|
||||||
|
|
|
@ -582,7 +582,7 @@ class ProjectBuilder:
|
||||||
|
|
||||||
# Remove unpublisheds (yet) tools/files.
|
# Remove unpublisheds (yet) tools/files.
|
||||||
for item in self._packageExcludes:
|
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)
|
self._execute ( command, "rm of %s failed" % item)
|
||||||
|
|
||||||
# Adds files neededs only for packaging purpose.
|
# Adds files neededs only for packaging purpose.
|
||||||
|
|
Loading…
Reference in New Issue