aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMark Eichin <eichin@cygnus>1993-08-05 15:03:45 +0000
committerMark Eichin <eichin@cygnus>1993-08-05 15:03:45 +0000
commita9a2f22fe0059a892fa50114eb898c372e9ca605 (patch)
tree3fbccf6cadf7db1624909251e43d52ca2ee5b5a6 /Makefile.in
parent8d9ec7b631e0a7e521cd385b6244458078c61adc (diff)
downloadfsf-binutils-gdb-a9a2f22fe0059a892fa50114eb898c372e9ca605.zip
fsf-binutils-gdb-a9a2f22fe0059a892fa50114eb898c372e9ca605.tar.gz
fsf-binutils-gdb-a9a2f22fe0059a892fa50114eb898c372e9ca605.tar.bz2
don't use $$(CC_FOR_TARGET) because that ends up being bash execute command
syntax; use $(CC_FOR_TARGET) instead.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ad004e0..23553a4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -226,7 +226,7 @@ BASE_FLAGS_TO_PASS = \
"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
"CXXFLAGS=$(CXXFLAGS)" \
"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
- "GCC_FOR_TARGET=$$(CC_FOR_TARGET)" \
+ "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
"INSTALL=$(INSTALL)" \
"INSTALL_DATA=$(INSTALL_DATA)" \
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
@@ -977,6 +977,12 @@ make-gdb.tar.gz: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
rm proto-toplev/readline/COPYING
ln proto-toplev/gdb/COPYING proto-toplev/readline/COPYING
+ # Change the bug reporting address in configure to bug-gdb
+ rm proto-toplev/configure
+ sed -e 's/configure@cygnus.com/bug-gdb@prep.ai.mit.edu/' \
+ <configure >proto-toplev/configure
+ chmod a+x proto-toplev/configure
+
# Take out texinfo and glob from configurable dirs
rm proto-toplev/configure.in
sed -e '/^host_tools=/s/texinfo //' \