OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-dev message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: [PATCH] makehtml: only pack one html file


We used to have multiple html files, but no more, so
packing files using * glob doesn't make sense -
and tends to include random unnecessary files
if the names happen to match.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 makehtml.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makehtml.sh b/makehtml.sh
index b2f044c..e18c350 100755
--- a/makehtml.sh
+++ b/makehtml.sh
@@ -47,4 +47,4 @@ rm $SPECDOC.tmp*
 #uncomment if you have a broken t4ht
 #cp ./t4ht-workaround/virtio-v1.0-csd01.css $SPECDOC.css
 
-zip $SPECDOC.zip $SPECDOC*.html $SPECDOC.css images/*.png
+zip $SPECDOC.zip $SPECDOC.html $SPECDOC.css images/*.png
-- 
MST


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]