Gitweb links:

...log 
http://git.netsurf-browser.org/ttf2f.git/shortlog/87b32e7a952275276deb1c29cfa9655f2fe7c9a3
...commit 
http://git.netsurf-browser.org/ttf2f.git/commit/87b32e7a952275276deb1c29cfa9655f2fe7c9a3
...tree 
http://git.netsurf-browser.org/ttf2f.git/tree/87b32e7a952275276deb1c29cfa9655f2fe7c9a3

The branch, master has been updated
       via  87b32e7a952275276deb1c29cfa9655f2fe7c9a3 (commit)
      from  caa9c7239d6d608c4c3d4e71e7d08d4de8cc6e4a (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/ttf2f.git/commit/?id=87b32e7a952275276deb1c29cfa9655f2fe7c9a3
commit 87b32e7a952275276deb1c29cfa9655f2fe7c9a3
Author: John-Mark Bell <[email protected]>
Commit: John-Mark Bell <[email protected]>

    Update EABI detection for soft-float toolchain.
    
    We can have either arm-riscos-gnueabi (ARMv4 with softfp) or
    arm-riscos-gnueabihf (ARMv7 with VFP). In either case, we need
    elf2aif to inject the EABI support code.

diff --git a/Makefile b/Makefile
index 39d8ddc..99badc1 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ ifeq ($(findstring -riscos,$(HOST)),-riscos)
     POST_TARGETS := $(realoutput) $(POST_TARGETS)
 
     ELF2AIF_FLAGS :=
-    ifeq ($(HOST),arm-riscos-gnueabihf)
+    ifeq ($(findstring -gnueabi,$(HOST)),-gnueabi)
       ELF2AIF_FLAGS := -e $(ELF2AIF_FLAGS)
     endif
 


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

Summary of changes:
 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 39d8ddc..99badc1 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ ifeq ($(findstring -riscos,$(HOST)),-riscos)
     POST_TARGETS := $(realoutput) $(POST_TARGETS)
 
     ELF2AIF_FLAGS :=
-    ifeq ($(HOST),arm-riscos-gnueabihf)
+    ifeq ($(findstring -gnueabi,$(HOST)),-gnueabi)
       ELF2AIF_FLAGS := -e $(ELF2AIF_FLAGS)
     endif
 


-- 
Truetype font to RISC OS font converter
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to