summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-04-14 10:53:02 +0200
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-04-14 12:27:11 +0300
commitf1c01c47c40d85b82b8e665b8ad4f62b69a09449 (patch)
tree6c126e6e9364afc545c3008cc0b5bffe30addb96
parent1dedc1c6b7d1b73c4e9fbe242bbbac2dec5340d7 (diff)
Make sure flex and bison are used, not some other variant of lex/yacc
It seems i386_parse.y contains bison-specific declarations. Change-Id: I3afb3e0b091108834252f07a1df80da35ccdfaa1 Reviewed-by: Rainer Keller <rainer.keller@theqtcompany.com>
-rw-r--r--3rdparty/elfutils/libcpu/i386_gendis/i386_gendis.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/elfutils/libcpu/i386_gendis/i386_gendis.pro b/3rdparty/elfutils/libcpu/i386_gendis/i386_gendis.pro
index e6dd4de..d4c3cb7 100644
--- a/3rdparty/elfutils/libcpu/i386_gendis/i386_gendis.pro
+++ b/3rdparty/elfutils/libcpu/i386_gendis/i386_gendis.pro
@@ -15,10 +15,10 @@ mnemonics64.commands = make -f $$PWD/../extras.mk srcdir=$$PWD/../ x86_64.mnemon
mylex.target = i386_lex.c
mylex.depends = i386_parse.c
-mylex.commands = lex -Pi386_ -o i386_lex.c $$PWD/../i386_lex.l
+mylex.commands = flex -Pi386_ -o i386_lex.c $$PWD/../i386_lex.l
myyacc.target = i386_parse.c
-myyacc.commands = yacc -pi386_ -d -o i386_parse.c $$PWD/../i386_parse.y
+myyacc.commands = bison -pi386_ -d -o i386_parse.c $$PWD/../i386_parse.y
OTHER_FILES += \
$$PWD/../extras.mk \