This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Add missing newline escape to Makefile.tpl
- From: Nick Clifton <nickc at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 11 Jul 2007 09:28:39 +0100
- Subject: Add missing newline escape to Makefile.tpl
Hi Guys,
I am applying the patch below as obvious. It adds a missing escaped
newline to the BUILD_EXPORTS list.
Cheers
Nick
<toplevel>/ChangeLog
2007-07-11 Nick Clifton <nickc@redhat.com>
* Makefile.tpl (BUILD_EXPORTS): Escape the newline at the end of the
WINDRES export.
Index: Makefile.tpl
===================================================================
--- Makefile.tpl (revision 126538)
+++ Makefile.tpl (working copy)
@@ -136,7 +136,7 @@ BUILD_EXPORTS = \
LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
NM="$(NM_FOR_BUILD)"; export NM; \
RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
- WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES;
+ WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
WINDMC="$(WINDMC_FOR_BUILD)"; export WINDMC;
# This is the list of directories to built for the host system.