Gitweb links:

...log 
http://git.netsurf-browser.org/makerun.git/shortlog/57097e214b1b0f5c898368d22cf61b2a7c8caf50
...commit 
http://git.netsurf-browser.org/makerun.git/commit/57097e214b1b0f5c898368d22cf61b2a7c8caf50
...tree 
http://git.netsurf-browser.org/makerun.git/tree/57097e214b1b0f5c898368d22cf61b2a7c8caf50

The branch, master has been updated
       via  57097e214b1b0f5c898368d22cf61b2a7c8caf50 (commit)
      from  fe55b6bfda74b0398eaa141faec44df4af8f8f16 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/makerun.git/commit/?id=57097e214b1b0f5c898368d22cf61b2a7c8caf50
commit 57097e214b1b0f5c898368d22cf61b2a7c8caf50
Author: John-Mark Bell <[email protected]>
Commit: John-Mark Bell <[email protected]>

    Teach buildsystem about arm-riscos-gnueabi toolchain

diff --git a/Makefile b/Makefile
index a0a07c4..5dde80e 100644
--- a/Makefile
+++ b/Makefile
@@ -44,12 +44,17 @@ ifeq ($(TARGET),riscos)
       EXEEXT := ,e1f
       SUBTARGET := -elf-
     else
-      ifneq (,$(findstring arm-riscos-gnueabihf-gcc,$(CC)))
+      ifneq (,$(findstring arm-riscos-gnueabi-gcc,$(CC)))
         EXEEXT := ,e1f
         SUBTARGET := -elfeabi-
       else
-        EXEEXT := ,ff8
-        SUBTARGET := -aof-
+        ifneq (,$(findstring arm-riscos-gnueabihf-gcc,$(CC)))
+          EXEEXT := ,e1f
+          SUBTARGET := -elfeabihf-
+        else
+          EXEEXT := ,ff8
+          SUBTARGET := -aof-
+        endif
       endif
     endif
   endif


-----------------------------------------------------------------------

Summary of changes:
 Makefile |   11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index a0a07c4..5dde80e 100644
--- a/Makefile
+++ b/Makefile
@@ -44,12 +44,17 @@ ifeq ($(TARGET),riscos)
       EXEEXT := ,e1f
       SUBTARGET := -elf-
     else
-      ifneq (,$(findstring arm-riscos-gnueabihf-gcc,$(CC)))
+      ifneq (,$(findstring arm-riscos-gnueabi-gcc,$(CC)))
         EXEEXT := ,e1f
         SUBTARGET := -elfeabi-
       else
-        EXEEXT := ,ff8
-        SUBTARGET := -aof-
+        ifneq (,$(findstring arm-riscos-gnueabihf-gcc,$(CC)))
+          EXEEXT := ,e1f
+          SUBTARGET := -elfeabihf-
+        else
+          EXEEXT := ,ff8
+          SUBTARGET := -aof-
+        endif
       endif
     endif
   endif


-- 
WimpSlot calculator for NetSurf
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to