diff options
author | Brian Paul <[email protected]> | 2011-05-18 07:50:21 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-05-18 07:51:33 -0600 |
commit | de1df26b5c11a45f2b1ff2ddc7b8ec764356aa94 (patch) | |
tree | 3ad505018f3628b917cd45998c5edf966640d15c /src/mesa/Makefile | |
parent | 3e0bb02358d627e784a2b7041d6e2e23e3dfd2c5 (diff) |
mesa: check that flex/bison are installed
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=36651
NOTE: This is a candidate for the 7.10 branch.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 03962e9c194..a903a260ac9 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -75,10 +75,10 @@ main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py m $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES2.0 > $@ program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y - bison -v -d --output=program/program_parse.tab.c $< + $(BISON) -v -d --output=program/program_parse.tab.c $< program/lex.yy.c: program/program_lexer.l - flex --never-interactive --outfile=$@ $< + $(FLEX) --never-interactive --outfile=$@ $< ###################################################################### # Helper libraries used by many drivers: |