diff options
author | K. Richard Pixley <rich@cygnus> | 1991-04-17 01:41:32 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-04-17 01:41:32 +0000 |
commit | 04dc1a624658fec9497b26b86058d040b743ff44 (patch) | |
tree | c43a078b301d78e0489b54f6e80b935629ce335c /ld | |
parent | 2b34da49e526d710cd9bfffea09fee1ddd65217e (diff) | |
download | gdb-04dc1a624658fec9497b26b86058d040b743ff44.zip gdb-04dc1a624658fec9497b26b86058d040b743ff44.tar.gz gdb-04dc1a624658fec9497b26b86058d040b743ff44.tar.bz2 |
Fixed a problem with host dependent parts.
Diffstat (limited to 'ld')
-rwxr-xr-x | ld/configure | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/ld/configure b/ld/configure index 542d9dd..5a938b5 100755 --- a/ld/configure +++ b/ld/configure @@ -179,9 +179,6 @@ configdirs= srctrigger=ldversion.c srcname="linker" -# per-host: - - ## end of common part # are we rebuilding config itself? @@ -209,11 +206,15 @@ if [ -n "${template}" ] ; then exit 1 fi - sed -e '/^# per\-target:/,$d' configure.in > configure.com + # split configure.in into common, per-host, and per-target parts + sed -e '/^# per\-host:/,$d' configure.in > configure.com + sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' configure.in > configure.hst sed -e '1,/^# per\-target:/d' configure.in > configure.tgt - sed -e '/^#### configure.in common parts/ r configure.com' \ - -e '/^#### / r configure.tgt' \ + # and insert them + sed -e '/^#### configure.in common part/ r configure.com' \ + -e '/^#### configure.in per\-host part/ r configure.hst' \ + -e '/^#### configure.in per\-target part/ r configure.tgt' \ ${template} >> configure rm -f configure.com configure.tgt configure.hst @@ -552,7 +553,10 @@ exit 0 # # $Log$ -# Revision 1.7 1991/04/15 23:57:22 rich +# Revision 1.8 1991/04/17 01:41:32 rich +# Fixed a problem with host dependent parts. +# +# Revision 1.6 1991/04/16 00:18:44 rich # Now handles multiple hosts and targets. # # Revision 1.5 1991/04/15 23:43:44 rich |