diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | Makefile.tpl | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 227774a3c0d..3dfca8d5f1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-11 Nick Clifton <nickc@redhat.com> + + * Makefile.tpl (BUILD_EXPORTS): Escape the newline at the end of the + WINDRES export. + * Makefile.in: Regenerate. + 2007-07-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * MAINTAINERS (OS Port Maintainers): Add myself as IRIX, Tru64 UNIX diff --git a/Makefile.in b/Makefile.in index d65529360fc..f6fb2dae451 100644 --- a/Makefile.in +++ b/Makefile.in @@ -133,7 +133,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. diff --git a/Makefile.tpl b/Makefile.tpl index 128a3a6ba4b..b49001dc6e8 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -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. |