diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-05-22 19:00:30 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-05-22 19:00:30 +0000 |
| commit | fdfc201182b3465450f17cb7c363548b1ea2c86a (patch) | |
| tree | a01e0a3f1dfdc7dd1f775ded7a7ec07c74217eff | |
| parent | b87ccb54f650d748139e6a6d41fad72c5527ecda (diff) | |
| download | klee-fdfc201182b3465450f17cb7c363548b1ea2c86a.tar.gz | |
Improve lex support, apparently FreeBSD lex expects -o to take a joined
argument. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72271 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | stp/parser/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stp/parser/Makefile b/stp/parser/Makefile index 8211c825..12483a26 100644 --- a/stp/parser/Makefile +++ b/stp/parser/Makefile @@ -12,7 +12,7 @@ parser: lexPL.o parsePL.o let-funcs.o main.o main.o: parsePL_defs.h lexPL.cpp: PL.lex parsePL_defs.h ../AST/AST.h - $(LEX) -o lexPL.cpp PL.lex + $(LEX) -olexPL.cpp PL.lex parsePL_defs.h: y.tab.h @cp y.tab.h parsePL_defs.h |
