This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 01 of 14] Add CT_Patch to mingwrt and w32api extract phase to allow


# HG changeset patch
# User Bart vdr. Meulen <bartvdrmeulen@gmail.com>
# Date 1305381590 -7200
# Node ID da5ae72ff531520f053f4293658a543011d8740e
# Parent  c70da6c50bdb08a8b3cbe5c83aa9ed0973a4ab6c
Add CT_Patch to mingwrt and w32api extract phase to allow
for patches to be added and applied.

Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
---
 scripts/build/kernel/mingw32.sh |    4 ++++
 scripts/build/libc/mingw.sh     |    4 ++++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/scripts/build/kernel/mingw32.sh b/scripts/build/kernel/mingw32.sh
--- a/scripts/build/kernel/mingw32.sh
+++ b/scripts/build/kernel/mingw32.sh
@@ -14,6 +14,10 @@
 
 do_kernel_extract() {
     CT_Extract "w32api-${CT_W32API_VERSION}-mingw32-src"
+
+    CT_Pushd ${CT_SRC_DIR}/w32api-${CT_W32API_VERSION}-mingw32
+    CT_Patch nochdir "w32api" ${CT_W32API_VERSION}
+    CT_Popd
 }
 
 do_kernel_headers() {
diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh
--- a/scripts/build/libc/mingw.sh
+++ b/scripts/build/libc/mingw.sh
@@ -23,6 +23,10 @@
 do_libc_extract() {
     CT_Extract "mingwrt-${CT_MINGWRT_VERSION}-mingw32-src"
 
+    CT_Pushd ${CT_SRC_DIR}/mingwrt-${CT_MINGWRT_VERSION}-mingw32
+    CT_Patch nochdir "mingwrt" ${CT_MINGWRT_VERSION}
+    CT_Popd
+
     if [ -n "${CT_MINGW_PDCURSES}" ]; then
         CT_Extract "PDCurses-${CT_MINGW_PDCURSES_VERSION}"
         CT_Patch "PDCurses" "${CT_MINGW_PDCURSES_VERSION}"

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]