Kaydet (Commit) db3b6548 authored tarafından Enrico Tröger's avatar Enrico Tröger

Fix installation of template files.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5373 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 3ad555d0
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
* src/document.c: * src/document.c:
Fix build with GTK 2.12: explicitly include gio.h if GIO Fix build with GTK 2.12: explicitly include gio.h if GIO
is available and to be used regardless of the USE_GIO_FILEMON flag. is available and to be used regardless of the USE_GIO_FILEMON flag.
* wscript:
Fix installation of template files.
2010-11-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> 2010-11-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
...@@ -523,7 +523,7 @@ def build(bld): ...@@ -523,7 +523,7 @@ def build(bld):
bld.install_files('${DATADIR}/%s' % dir, 'data/*.tags') bld.install_files('${DATADIR}/%s' % dir, 'data/*.tags')
bld.install_files('${DATADIR}/%s' % dir, 'data/snippets.conf') bld.install_files('${DATADIR}/%s' % dir, 'data/snippets.conf')
bld.install_files('${DATADIR}/%s' % dir, 'data/ui_toolbar.xml') bld.install_files('${DATADIR}/%s' % dir, 'data/ui_toolbar.xml')
bld.install_files('${DATADIR}/%s/templates' % dir, 'data/templates/*.*') bld.install_files('${DATADIR}/%s/templates' % dir, 'data/templates/*')
bld.install_files('${DATADIR}/%s/templates/files' % dir, 'data/templates/files/*.*') bld.install_files('${DATADIR}/%s/templates/files' % dir, 'data/templates/files/*.*')
bld.install_files('${DATADIR}/%s/colorschemes' % dir, 'data/colorschemes/*.*') bld.install_files('${DATADIR}/%s/colorschemes' % dir, 'data/colorschemes/*.*')
bld.install_as('${DATADIR}/%s/GPL-2' % dir, 'COPYING') bld.install_as('${DATADIR}/%s/GPL-2' % dir, 'COPYING')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment