mirror of
https://gitlab.com/ita1024/waf.git
synced 2025-01-05 07:56:59 +01:00
New release 1.7.7
This commit is contained in:
parent
59363114c3
commit
c0575b8528
@ -3,7 +3,11 @@ NEW IN WAF 1.7.7
|
||||
* XLC and XLF detection fixes #1230
|
||||
* Fixed the multiple gcc/msvc builds #1237
|
||||
* Better gdc detection on Ubuntu #1222
|
||||
* Enable relative symlinks #1234
|
||||
* Relative symlinks in symlink_as #1234
|
||||
* Various improvements in the doxygen tool #1232 #1233
|
||||
* Fixed windows filehandle issues on Python #1235
|
||||
* Visual Studio 2012 detection improvements
|
||||
* OSX soname installation fix
|
||||
|
||||
NEW IN WAF 1.7.6
|
||||
----------------
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys
|
||||
|
||||
VERSION="1.7.6"
|
||||
VERSION="1.7.7"
|
||||
REVISION="x"
|
||||
INSTALL="x"
|
||||
C1='x'
|
||||
|
@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
|
||||
import waflib.Node
|
||||
|
||||
# the following 3 constants are updated on each new release (do not touch)
|
||||
HEXVERSION=0x1070600
|
||||
HEXVERSION=0x1070700
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="1.7.6"
|
||||
WAFVERSION="1.7.7"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="704f85f131c77b2244eaf134afe8fe04373d3707"
|
||||
WAFREVISION="59363114c3c366534452be18dc5d683e9511c82d"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
ABI = 98
|
||||
|
@ -322,9 +322,6 @@ use command_is_external=True''') % (self.command,)
|
||||
|
||||
if self.cwd is None:
|
||||
cwd = None
|
||||
else:
|
||||
assert isinstance(cwd, CmdDirArg)
|
||||
self.cwd.find_node(self.path)
|
||||
|
||||
args = []
|
||||
inputs = []
|
||||
|
Loading…
Reference in New Issue
Block a user