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

Issue 1348, gdc detection for gdc-msys

This commit is contained in:
Thomas Nagy 2013-09-11 07:52:27 +02:00
parent 487cc43df2
commit e07529ad89

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 ") == -1:
if out.find("gdc") == -1:
conf.fatal("detected compiler is not gdc")
@conf