Skip to content

Commit

Permalink
Update waf to its latest SVN rev and exclude some unused modules whic…
Browse files Browse the repository at this point in the history
…h 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
  • Loading branch information
eht16 committed Jul 25, 2008
1 parent 56de0f6 commit 5cc91ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* data/filetypes.sh, src/highlighting.c:
Add missing "error" and heredoc styles to filetype Shellscript
(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>
Expand Down
Binary file modified waf
Binary file not shown.
4 changes: 2 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down Expand Up @@ -395,7 +395,7 @@ def build(bld):
def shutdown():
# the following code was taken from midori's WAF script, thanks
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
if not Options.options.destdir:
try:
Expand Down

0 comments on commit 5cc91ef

Please sign in to comment.