Exclude 'CVS' directories when making OpenOffice .sxi files (.sxi
files are just zip files).
This commit is contained in:
parent
2f5f2b672d
commit
af99d2d8b9
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=25499
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ ${DOC}.html: ${SRCS}
|
|||
|
||||
${DOC}.sxi: ${SRCS}
|
||||
${XSLTPROC} ${XSLTPROCOPTS} ${DOC_PREFIX}/share/openoffice/${TEMPLATE}.xsl ${.CURDIR}/slides.xml > ${.OBJDIR}/content.xml
|
||||
(cd ${DOC_PREFIX}/share/openoffice/${TEMPLATE}; zip -r ${.OBJDIR}/${DOC}.sxi .)
|
||||
(cd ${DOC_PREFIX}/share/openoffice/${TEMPLATE}; zip -r ${.OBJDIR}/${DOC}.sxi . -x \*/CVS/\* -x CVS/\*)
|
||||
(cd ${.OBJDIR}; zip -g ${DOC}.sxi content.xml)
|
||||
|
||||
${DOC}.fo: ${SRCS}
|
||||
|
|
Loading…
Reference in a new issue