Revision: 3394 http://geany.svn.sourceforge.net/geany/?rev=3394&view=rev Author: eht16 Date: 2008-12-17 16:01:36 +0000 (Wed, 17 Dec 2008)
Log Message: ----------- Update Waf and various small fixes for the wscript.
Modified Paths: -------------- trunk/ChangeLog trunk/waf trunk/wscript
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-12-17 16:01:09 UTC (rev 3393) +++ trunk/ChangeLog 2008-12-17 16:01:36 UTC (rev 3394) @@ -18,6 +18,8 @@ be jumped then). * src/filetypes.c, data/filetypes.fortran: Change comment character to '!' for Fortran 90 (closes #2438423). + * waf, wscript: + Update Waf and various small fixes for the wscript.
2008-12-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/waf =================================================================== --- trunk/waf 2008-12-17 16:01:09 UTC (rev 3393) +++ trunk/waf 2008-12-17 16:01:36 UTC (rev 3394) @@ -37,16 +37,16 @@ try:import psyco;psyco.full() except:pass
-VERSION="1.5.0" -REVISION="80c6ad48eea21944e014f0f0e609ef9c" +VERSION="1.5.1" +REVISION="bf90834624c38a49188ccb0ebd5a521d" INSTALL=sys.platform=='win32' and 'c:/temp' or '/usr/local' -C1='#(' -C2='#&' +C1='#*' +C2='#)' cwd = os.getcwd() join = os.path.join
def err(m): - print '\033[91mError: %s\033[0m' % m + print ('\033[91mError: %s\033[0m' % m) sys.exit(1)
def unpack_wafdir(dir): @@ -79,7 +79,7 @@ for x in t: t.extract(x) t.close()
- os.chmod(join('wafadmin','Tools'), 0755) + os.chmod(join('wafadmin','Tools'), 493)
os.unlink(tmp) os.chdir(cwd) @@ -127,5 +127,5 @@ Scripting.prepare(t, cwd, VERSION, wafdir)
#==>
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.