diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-05-11 00:40:25 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-05-11 00:40:25 +0000 |
commit | e27da16d591db0293f498c0bd1605b842bcbce0f (patch) | |
tree | d769d5e4d0f4918d5d58d5bc79d5c2f15f846129 /gdb/configure.in | |
parent | *** empty log message *** (diff) | |
download | binutils-gdb-e27da16d591db0293f498c0bd1605b842bcbce0f.tar.gz binutils-gdb-e27da16d591db0293f498c0bd1605b842bcbce0f.tar.bz2 binutils-gdb-e27da16d591db0293f498c0bd1605b842bcbce0f.zip |
From Christian Limpach <chris@Pin.LU>
* configure.in: Change sed expression which comments out
NATDEPFILES to also comment out continuation lines.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 19976dded23..8d304594f3a 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -1366,7 +1366,8 @@ dnl provided by makefile fragments. dnl if test "${nativefile}" = ""; then < Makefile \ - sed -e '/^NATDEPFILES[[ ]]*=[[ ]]*/s//# NATDEPFILES=/' \ + sed -e '/^NATDEPFILES[[ ]]*=.*\\$/,/[[^\\]]$/s/^/# /' \ + -e '/^NATDEPFILES[[ ]]*=/s/^/# /' \ | sed -e '/^\(NATDEPFILES[[ ]]*[[+]]=[[ ]]*\)/s//# \1/' \ > Makefile.tem mv -f Makefile.tem Makefile |