diff options
Diffstat (limited to 'attoconf/lib/lex.py')
-rw-r--r-- | attoconf/lib/lex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/attoconf/lib/lex.py b/attoconf/lib/lex.py index d25455b..5f8ff43 100644 --- a/attoconf/lib/lex.py +++ b/attoconf/lib/lex.py @@ -18,7 +18,7 @@ from __future__ import print_function, division, absolute_import from ..classy import ClassyProject -from .c import shell +from ..types import ShellList def flex(build, FLEX): # TODO actually test it @@ -29,6 +29,6 @@ class Flex(ClassyProject): def vars(self): super(Flex, self).vars() self.add_option('FLEX', init=['flex'], - type=shell, check=flex, + type=ShellList, check=flex, help='Lexical analyzer command', hidden=False) |