This is an automated email from Gerrit.

"zapb <[email protected]>" just uploaded a new patch set to Gerrit, which you can 
find at https://review.openocd.org/c/openocd/+/9777

-- gerrit

commit d3e623516efc592bf85174ec6d84c0486fe65a37
Author: Marc Schink <[email protected]>
Date:   Mon Jul 6 16:43:53 2026 +0200

    contrib/firmware/angie: Add PREFIX to makebin command
    
    Add the prefix to makebin to match other commands. This fixes building,
    for example, on Fedora, which uses the 'sdcc' prefix for all SDCC commands.
    
    Change-Id: I93705062c58d2b7821e37bf9fa1b46aaf8648d1c
    Signed-off-by: Marc Schink <[email protected]>

diff --git a/contrib/firmware/angie/c/Makefile 
b/contrib/firmware/angie/c/Makefile
index 21873da6bf..a8817daa16 100644
--- a/contrib/firmware/angie/c/Makefile
+++ b/contrib/firmware/angie/c/Makefile
@@ -22,6 +22,8 @@ AS = $(PREFIX)sdas8051
 # the OpenOCD driver, but the resulting file is smaller.
 PACKIHX = $(PREFIX)packihx
 
+MAKEBIN = $(PREFIX)makebin
+
 # GNU binutils size. Used to print the size of the IHX file generated by SDCC.
 SIZE = size
 
@@ -71,7 +73,7 @@ clean:
        rm -f *.asm *.lst *.rel *.rst *.sym *.ihx *.lk *.map *.mem
 
 bin: angie_firmware.ihx
-       makebin -p angie_firmware.ihx angie_firmware.bin
+       $(MAKEBIN) -p angie_firmware.ihx angie_firmware.bin
 
 hex: angie_firmware.ihx
        $(PACKIHX) angie_firmware.ihx > fx2.hex

-- 

Reply via email to