* configure.in (AC_OUTPUT): Handle assignments to NATDEPFILES

using `+=' as well as `='.
* configure: Regenerated.
This commit is contained in:
Jim Blandy
2001-11-05 23:54:49 +00:00
parent 3f08ced966
commit c462020561
3 changed files with 14 additions and 4 deletions

6
gdb/configure vendored
View File

@@ -9193,8 +9193,10 @@ EOF
cat >> $CONFIG_STATUS <<\EOF
if test "${nativefile}" = ""; then
sed -e '/^NATDEPFILES[ ]*=[ ]*/s//# NATDEPFILES=/' \
< Makefile > Makefile.tem
< Makefile \
sed -e '/^NATDEPFILES[ ]*=[ ]*/s//# NATDEPFILES=/' \
| sed -e '/^\(NATDEPFILES[ ]*[+]=[ ]*\)/s//# \1/' \
> Makefile.tem
mv -f Makefile.tem Makefile
fi