aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorPaul N. Hilfinger <hilfinger@adacore.com>2004-10-03 08:35:57 +0000
committerPaul N. Hilfinger <hilfinger@adacore.com>2004-10-03 08:35:57 +0000
commit7dc1ef8d9d5104579c1e07f47f870ab51f466479 (patch)
treedea98ad1d682a3894a3860649fd25b510e200698 /gdb/Makefile.in
parenta988509aa986640530a23e1ce53460b46019d7eb (diff)
downloadgdb-7dc1ef8d9d5104579c1e07f47f870ab51f466479.zip
gdb-7dc1ef8d9d5104579c1e07f47f870ab51f466479.tar.gz
gdb-7dc1ef8d9d5104579c1e07f47f870ab51f466479.tar.bz2
* Makefile.in (.l.c): Modify rule for compatibility with recent
versions of flex, and remove most command-line options. * ada-lex.l: Add %options line in place of -I -i and -s command-line options.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index d777175..3a4bd37 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1583,8 +1583,8 @@ po/$(PACKAGE).pot: force
mv $@.new ./$*.c
.l.c:
@if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
- echo $(FLEX) -Isit $< ">" $@; \
- $(FLEX) -Isit $< > $@; \
+ echo $(FLEX) -o$@ $<; \
+ $(FLEX) -o$@ $<; \
elif [ ! -f $@ -a ! -f $< ]; then \
echo "$< missing and flex not available."; \
false; \