Issue 1222

This commit is contained in:
Thomas Nagy 2012-12-14 23:43:28 +01:00
parent 687df069db
commit fc9d6f4200
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ 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
NEW IN WAF 1.7.6
----------------

View File

@ -14,7 +14,7 @@ def find_gdc(conf):
conf.find_program('gdc', var='D')
out = conf.cmd_and_log([conf.env.D, '--version'])
if out.find("gdc (GCC)") == -1:
if out.find("gdc ") == -1:
conf.fatal("detected compiler is not gdc")
@conf