diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2020-11-07 21:28:47 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2020-11-09 12:05:39 +0100 |
commit | a76bf0e55d84e8529a337cad278814ba2e30d3af (patch) | |
tree | 366d8354a8681bb0fc4cdb390758e80994d525ac /gas | |
parent | 521d4b194f89ca8f7d5d3cce1ecdc4fc7559205c (diff) | |
download | gdb-a76bf0e55d84e8529a337cad278814ba2e30d3af.zip gdb-a76bf0e55d84e8529a337cad278814ba2e30d3af.tar.gz gdb-a76bf0e55d84e8529a337cad278814ba2e30d3af.tar.bz2 |
Fix regexp for development.exp
binutils/:
* Makefile.am (development.exp): Fix regexp.
* Makefile.in: Regenerate.
gas/:
* Makefile.am (development.exp): Fix regexp.
* Makefile.in: Regenerate.
ld/:
* Makefile.am (development.exp): Fix regexp.
* Makefile.in: Regenerate.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/Makefile.am | 2 | ||||
-rw-r--r-- | gas/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 786d088..f1ba270 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-11-09 Andreas Schwab <schwab@linux-m68k.org> + + * Makefile.am (development.exp): Fix regexp. + * Makefile.in: Regenerate. + 2020-11-09 Nelson Chu <nelson.chu@sifive.com> * config/tc-riscv.c (explicit_mabi): New boolean to indicate if diff --git a/gas/Makefile.am b/gas/Makefile.am index 4ff0c4f..9db77d6 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -434,7 +434,7 @@ check-DEJAGNU: site.exp fi development.exp: $(BFDDIR)/development.sh - $(EGREP) "[development|experimental]=" $(BFDDIR)/development.sh \ + $(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh \ | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@ # The m68k operand parser. diff --git a/gas/Makefile.in b/gas/Makefile.in index 5d241e2..2a8fdbf 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -1570,7 +1570,7 @@ check-DEJAGNU: site.exp fi development.exp: $(BFDDIR)/development.sh - $(EGREP) "[development|experimental]=" $(BFDDIR)/development.sh \ + $(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh \ | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@ # If m68k-parse.y is in a different directory, then ylwrap will use an |