Commit 92c1322dcf4a485b389aeabb7dff5740e91b1e9a

Authored by Perry Werneck
2 parents 3bc3ff53 92d91e67

Merge branch 'master' into develop

Showing 3 changed files with 9 additions and 2 deletions   Show diff stats
Makefile.in
... ... @@ -231,7 +231,11 @@ $(OBJDIR)/schemas/%.xml:\
231 231 install-%: \
232 232 %/Makefile
233 233  
234   - @$(MAKE) -C `dirname $<` DESTDIR=$(DESTDIR) install
  234 + @$(MAKE) \
  235 + -C `dirname $<` \
  236 + DESTDIR=$(DESTDIR) \
  237 + prefix=$(prefix) \
  238 + install
235 239  
236 240 %.ico: \
237 241 branding/%.svg
... ...
README.md
... ... @@ -25,6 +25,8 @@ For the supported distributions get the install repositories and instructions fr
25 25  
26 26 ### Windows
27 27  
  28 +Updated windows installers are available on Dropbox, google drive and one drive.
  29 +
28 30 [<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.9.0/icons/dropbox.svg" alt="Get from dropbox" height="80px">](https://www.dropbox.com/sh/2qy3s6b5s4o4bws/AAAubHE8SBG7r6CJSKPflKN0a?dl=0)
29 31 [<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.9.0/icons/googledrive.svg" alt="Get from google drive" height="80px">](https://drive.google.com/drive/folders/1tmtKzGujLVvnIV_knWQXl_TBEC3_9ucL?usp=sharing)
30 32 [<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.9.0/icons/microsoftonedrive.svg" alt="Get from Microsoft One Drive" height="80px">](https://onedrive.live.com/?id=D8B46DA0372A6F1A%212208&cid=D8B46DA0372A6F1A)
... ...
schemas/Makefile.in
... ... @@ -54,8 +54,9 @@ GLIB_SCHEMA_COMPILER=@GLIB_SCHEMA_COMPILER@
54 54  
55 55 all:
56 56 # Compile schemas to check if they're valid
  57 + @$(MKDIR) $(BINDIR)
57 58 @$(GLIB_SCHEMA_COMPILER) \
58   - --dry-run \
  59 + --targetdir=$(BINDIR) \
59 60 $(BASEDIR)/schemas/@OSNAME@
60 61  
61 62 install: \
... ...