diff options
author | Obey Arthur Liu <arthur@milliways.fr> | 2009-04-26 10:05:18 +0200 |
---|---|---|
committer | Obey Arthur Liu <arthur@milliways.fr> | 2009-04-26 10:05:18 +0200 |
commit | 4b2cb7963509522bbc10c1ee494395ff6fe59fba (patch) | |
tree | 5d71579bb56656e4fdef3b1cbe0c8a8cf378ebfc /doc/en | |
parent | 74ba797d43ce307e86d4bcc9e511727123c6036b (diff) | |
download | aptitude-4b2cb7963509522bbc10c1ee494395ff6fe59fba.tar.gz |
Replace inkscape with rsvg in makefile.
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/Makefile.am b/doc/en/Makefile.am index 5e4180e1..cafd6e76 100644 --- a/doc/en/Makefile.am +++ b/doc/en/Makefile.am @@ -71,7 +71,7 @@ doc-html-stamp: aptitude.xml manpage.xml $(srcdir)/../aptitude-html.xsl $(srcdir mkdir output-html/images/ ln -f $(srcdir)/images/*.png output-html/images/ - set -e; for x in $(srcdir)/images/*.svg; do inkscape -D -b white -e output-html/images/$$(basename $${x%.svg}.png) $$x; done + set -e; for x in $(srcdir)/images/*.svg; do rsvg-convert -f png -o output-html/images/$$(basename $${x%.svg}.png) $$x; done for x in caution important note tip warning; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.png output-html/images/; done for x in home next prev up; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.gif output-html/images/; done |