We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent aa00f37 commit 2aa82c0Copy full SHA for 2aa82c0
Makefile.win
@@ -25,6 +25,14 @@ cpgrass:
25
cp -r $(GRASS_BASE)/scripts $(prefix)/grass
26
cp -r $(GRASS_BASE)/lib/*.dll $(prefix)
27
cp -r $(GRASS_BASE)/docs/html $(prefix)/grass/docs
28
+# Qt does not support GIF by default
29
+ if [ -f $(GRASS_BASE)/docs/html/grass.smlogo.gif ] ; then \
30
+ convert $(GRASS_BASE)/docs/html/grass.smlogo.gif $(prefix)/grass/docs/html/grass.smlogo.png ; \
31
+ fi
32
+ @list=`ls $(GRASS_BASE)/docs/html/*.html`; \
33
+ for f in $$list; do \
34
+ cat $$f |sed 's/grass.smlogo.gif/grass.smlogo.png/' > $(prefix)/grass/docs/html/`basename $$f` ; \
35
+ done
36
@list=`ls $(prefix)/grass_*.dll`; \
37
for f in $$list; do \
38
$(STRIP) $$f; \
0 commit comments