mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
don't use $$(CC_FOR_TARGET) because that ends up being bash execute command
syntax; use $(CC_FOR_TARGET) instead.
This commit is contained in:
@ -226,7 +226,7 @@ BASE_FLAGS_TO_PASS = \
|
|||||||
"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
|
"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
|
||||||
"CXXFLAGS=$(CXXFLAGS)" \
|
"CXXFLAGS=$(CXXFLAGS)" \
|
||||||
"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
|
"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
|
||||||
"GCC_FOR_TARGET=$$(CC_FOR_TARGET)" \
|
"GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
|
||||||
"INSTALL=$(INSTALL)" \
|
"INSTALL=$(INSTALL)" \
|
||||||
"INSTALL_DATA=$(INSTALL_DATA)" \
|
"INSTALL_DATA=$(INSTALL_DATA)" \
|
||||||
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
"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
|
rm proto-toplev/readline/COPYING
|
||||||
ln proto-toplev/gdb/COPYING 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
|
# Take out texinfo and glob from configurable dirs
|
||||||
rm proto-toplev/configure.in
|
rm proto-toplev/configure.in
|
||||||
sed -e '/^host_tools=/s/texinfo //' \
|
sed -e '/^host_tools=/s/texinfo //' \
|
||||||
|
Reference in New Issue
Block a user