Update waf to its latest SVN rev and exclude some unused modules which makes it another 20 KB smaller.
Update waf script to reflect waf API changes(module Install removed). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2815 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
56de0f6641
commit
5cc91efe47
@ -3,6 +3,10 @@
|
|||||||
* data/filetypes.sh, src/highlighting.c:
|
* data/filetypes.sh, src/highlighting.c:
|
||||||
Add missing "error" and heredoc styles to filetype Shellscript
|
Add missing "error" and heredoc styles to filetype Shellscript
|
||||||
(related to #2026853).
|
(related to #2026853).
|
||||||
|
* waf, wscript:
|
||||||
|
Update waf to its latest SVN rev and exclude some unused modules
|
||||||
|
which makes it another 20 KB smaller.
|
||||||
|
Update waf script to reflect waf API changes(module Install removed).
|
||||||
|
|
||||||
|
|
||||||
2008-07-24 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2008-07-24 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||||
|
4
wscript
4
wscript
@ -38,7 +38,7 @@ Requires WAF SVN r3976 (or later) and Python 2.4 (or later).
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
import Build, Configure, Install, Options, Runner, Task, Utils
|
import Build, Configure, Options, Runner, Task, Utils
|
||||||
import sys, os, subprocess, shutil
|
import sys, os, subprocess, shutil
|
||||||
|
|
||||||
|
|
||||||
@ -395,7 +395,7 @@ def build(bld):
|
|||||||
def shutdown():
|
def shutdown():
|
||||||
# the following code was taken from midori's WAF script, thanks
|
# the following code was taken from midori's WAF script, thanks
|
||||||
if Options.commands['install'] or Options.commands['uninstall']:
|
if Options.commands['install'] or Options.commands['uninstall']:
|
||||||
dir = Install.path_install('DATADIR', 'icons/hicolor')
|
dir = Build.bld.path_install('DATADIR', 'icons/hicolor')
|
||||||
icon_cache_updated = False
|
icon_cache_updated = False
|
||||||
if not Options.options.destdir:
|
if not Options.options.destdir:
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user