Fix flex rule in gdb
authorTom Tromey <tromey@adacore.com>
Tue, 25 Jan 2022 21:57:18 +0000 (14:57 -0700)
committerTom Tromey <tromey@adacore.com>
Tue, 1 Feb 2022 18:39:24 +0000 (11:39 -0700)
commit326f526e1b87a2b18d7175c88bdebc418be06ad6
tree16cf60009b7a1f842c498dd1780b4446b4d0037d
parentcd393cec3ab21f6e8b984dea5dafe2c7a5aec892
Fix flex rule in gdb

Currently, if flex fails, it will leave the resulting .c file in the
tree.  This will cause a cascade of errors, and requires the manual
deletion of the .c file in order to recreate the problem.

It's better for the rule to fail such that the .c file is not updated.
This way, 'make' will fail the same way every time -- which is much
handier for debugging syntax errors.

This fix just updates the Makefile rule to follow the way that the
"yacc" rule already works.
gdb/Makefile.in