scons: Fix imports

This commit is contained in:
anatoly techtonik 2014-06-03 01:37:26 +03:00
parent dd1f1cc748
commit e40196f89e
3 changed files with 2 additions and 4 deletions

View file

@ -1,5 +1,5 @@
# vi: syntax=python:et:ts=4
from config_check_utils import *
from config_check_utils import find_include
from os.path import join, dirname, basename
from glob import glob
import re

View file

@ -1,6 +1,4 @@
# vi: syntax=python:et:ts=4
from config_check_utils import *
def CheckCPlusPlus(context, gcc_version = None):
message = "Checking whether C++ compiler works "
test_program = """

View file

@ -1,6 +1,6 @@
# vi: syntax=python:et:ts=4
import sys, os
from config_check_utils import *
from config_check_utils import backup_env, restore_env
import distutils.sysconfig
def exists():