aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-11-05 08:14:38 +0000
committerPer Bothner <per@bothner.com>1995-11-05 08:14:38 +0000
commit96457d7f4d452f9c47e84eafaec8aadadf5eb608 (patch)
tree8dae63cd358ce3e286c04cfb0a658e327924b131 /configure
parentda3d57e3f7ba7296c015779015983f2db0b1f06e (diff)
downloadgdb-96457d7f4d452f9c47e84eafaec8aadadf5eb608.zip
gdb-96457d7f4d452f9c47e84eafaec8aadadf5eb608.tar.gz
gdb-96457d7f4d452f9c47e84eafaec8aadadf5eb608.tar.bz2
* configure: Remove dubious bug reporting address.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure31
1 files changed, 12 insertions, 19 deletions
diff --git a/configure b/configure
index 499d0eb..784c280 100755
--- a/configure
+++ b/configure
@@ -19,13 +19,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-# Please report any problems running this configure script to
-# configure@cygnus.com
-# Please do not send reports about other problems to this address. See
-# gdb/README, gas/README, etc., for info on where and how to report
-# problems about particular tools.
-
-# This file was written by K. Richard Pixley.
+# This file was originally written by K. Richard Pixley.
#
# Shell script to create proper links to machine-dependent files in
@@ -686,6 +680,9 @@ fi
CXX=${CXX-"g++ -O"}
+export CC
+export CXX
+
for subdir in . ${subdirs} ; do
# ${subdir} is relative path from . to the directory we're currently
@@ -936,21 +933,17 @@ EOF
sed -e "s:^prefix[ ]*=.*$:prefix = ${prefix}:" \
-e "s:^exec_prefix[ ]*=.*$:exec_prefix = ${exec_prefix}:" \
-e "/^CC[ ]*=/{
- b chkcc
- :contcc
- N
- :chkcc
- s/\\\\$//
- t contcc
+ :loop1
+ /\\\\$/ N
+ /\\\\$/ b loop1
+ s/\\\\\\n//g
s%^CC[ ]*=.*$%CC = ${CC}%
}" \
-e "/^CXX[ ]*=/{
- b chkcxx
- :contcxx
- N
- :chkcxx
- s/\\\\$//
- t contcxx
+ :loop2
+ /\\\\$/ N
+ /\\\\$/ b loop2
+ s/\\\\\\n//g
s%^CXX[ ]*=.*$%CXX = ${CXX}%
}" \
-e "s:^SHELL[ ]*=.*$:SHELL = ${config_shell}:" \