2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00

Issue 1205

This commit is contained in:
Thomas Nagy 2012-10-02 03:43:58 +02:00
parent 0d6cd93f95
commit 85d863bd52
5 changed files with 8 additions and 5 deletions

View File

@ -2,6 +2,7 @@ NEW IN WAF 1.7.5
---------------- ----------------
* Fixed the kde4 library detection on Fedora * Fixed the kde4 library detection on Fedora
* New tool for protocol buffers (protoc.py) #1184 * New tool for protocol buffers (protoc.py) #1184
* Fixed a syntax error affecting Python < 2.6
NEW IN WAF 1.7.4 NEW IN WAF 1.7.4
---------------- ----------------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys import os, sys
VERSION="1.7.4" VERSION="1.7.5"
REVISION="x" REVISION="x"
INSTALL="x" INSTALL="x"
C1='x' C1='x'

View File

@ -177,7 +177,9 @@ class BuildContext(Context.Context):
) )
""" """
def f(rule): def f(rule):
return self(*k, rule=rule, **kw) ret = self(*k, **kw)
ret.rule = rule
return ret
return f return f
def __copy__(self): def __copy__(self):

View File

@ -11,10 +11,10 @@ from waflib import Utils, Errors, Logs
import waflib.Node import waflib.Node
# the following 3 constants are updated on each new release (do not touch) # the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1070400 HEXVERSION=0x1070500
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFVERSION="1.7.4" WAFVERSION="1.7.5"
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65" WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65"

View File

@ -10,7 +10,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
""" """
VERSION="1.7.4" VERSION="1.7.5"
APPNAME='waf' APPNAME='waf'
REVISION='' REVISION=''