diff options
author | Sebastian Parborg <darkdefende@gmail.com> | 2011-06-21 21:32:33 +0200 |
---|---|---|
committer | Sebastian Parborg <darkdefende@gmail.com> | 2011-06-21 21:32:33 +0200 |
commit | 1c9ab2d3240af06ec6b426b527fc6a47c29028bc (patch) | |
tree | c6fe85df804220693c68314a71a5953a726a156e /filetypes | |
parent | Added %.c : %.h rule support (diff) | |
download | ebuildgen-1c9ab2d3240af06ec6b426b527fc6a47c29028bc.tar.gz ebuildgen-1c9ab2d3240af06ec6b426b527fc6a47c29028bc.tar.bz2 ebuildgen-1c9ab2d3240af06ec6b426b527fc6a47c29028bc.zip |
Fixed so you can run the new version from the cli
Diffstat (limited to 'filetypes')
-rw-r--r-- | filetypes/makefiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filetypes/makefiles.py b/filetypes/makefiles.py index eac607e..d451541 100644 --- a/filetypes/makefiles.py +++ b/filetypes/makefiles.py @@ -1,6 +1,6 @@ from ply import lex from ply import yacc -from makefilecom import expand +from filetypes.makefilecom import expand def scanmakefile(makefile): makefile = "\n" + makefile #Add \n so you can guess vars |