Skip to content

Commit

Permalink
convert gif to png
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5856 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Sep 22, 2006
1 parent aa00f37 commit 2aa82c0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile.win
Expand Up @@ -25,6 +25,14 @@ cpgrass:
cp -r $(GRASS_BASE)/scripts $(prefix)/grass
cp -r $(GRASS_BASE)/lib/*.dll $(prefix)
cp -r $(GRASS_BASE)/docs/html $(prefix)/grass/docs
# Qt does not support GIF by default
if [ -f $(GRASS_BASE)/docs/html/grass.smlogo.gif ] ; then \
convert $(GRASS_BASE)/docs/html/grass.smlogo.gif $(prefix)/grass/docs/html/grass.smlogo.png ; \
fi
@list=`ls $(GRASS_BASE)/docs/html/*.html`; \
for f in $$list; do \
cat $$f |sed 's/grass.smlogo.gif/grass.smlogo.png/' > $(prefix)/grass/docs/html/`basename $$f` ; \
done
@list=`ls $(prefix)/grass_*.dll`; \
for f in $$list; do \
$(STRIP) $$f; \
Expand Down

0 comments on commit 2aa82c0

Please sign in to comment.