Skip to content

Commit 9b0ed34

Browse files
committedJul 31, 2015
runtime/Makefile: WA for more pesky travis/miniconda misbehavior
1 parent 89343ae commit 9b0ed34

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

Diff for: ‎soc/runtime/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
include $(MSCDIR)/software/common.mak
22

3+
PYTHON ?= python3
4+
35
OBJECTS := isr.o flash_storage.o clock.o rtiocrg.o elf_loader.o services.o session.o log.o test_mode.o kloader.o bridge_ctl.o mailbox.o ksupport_data.o net_server.o moninj.o main.o
46
OBJECTS_KSUPPORT := ksupport.o exception_jmp.o exceptions.o mailbox.o bridge.o rtio.o ttl.o dds.o
57

@@ -43,7 +45,7 @@ ksupport_data.o: ksupport.bin
4345
$(LD) -r -b binary -o $@ $<
4446

4547
service_table.h: ksupport.elf gen_service_table.py
46-
@echo " GEN " $@ && ./gen_service_table.py ksupport.elf > $@
48+
@echo " GEN " $@ && $(PYTHON) gen_service_table.py ksupport.elf > $@
4749

4850
services.c: service_table.h
4951

0 commit comments

Comments
 (0)
Please sign in to comment.