Fix missing module import in compiler_c

This commit is contained in:
Krzysztof Kosiński 2014-01-25 19:31:11 +01:00
parent c38a4fb4f0
commit 9a824a5649
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ Not all compilers need to have a specific tool. For example, the clang compilers
$ CC=clang waf configure
"""
import os, sys, imp, types
import os, sys, imp, types, re
from waflib.Tools import ccroot
from waflib import Utils, Configure
from waflib.Logs import debug