diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2024-12-17 12:03:33 +0100 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2024-12-17 12:03:33 +0100 |
commit | cede12f19785e66ba2db98b5e66971b7aac21bd9 (patch) | |
tree | 13815afa1f4d42030e8860a7cc018bc439c8ad7f | |
parent | 33c0c9efae4ea436c1fb1e15302b0b3b010b7397 (diff) | |
download | rockbox-cede12f197.tar.gz rockbox-cede12f197.zip |
simulator: fix missing background bmp on MacOS
Change-Id: I6ad8b78519764dad53d8353d14432f791a7a85a5
-rw-r--r-- | uisimulator/uisimulator.make | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/uisimulator/uisimulator.make b/uisimulator/uisimulator.make index 091bdd1c43..85d7c014ef 100644 --- a/uisimulator/uisimulator.make +++ b/uisimulator/uisimulator.make @@ -21,18 +21,14 @@ SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a ifeq (yes,$(APPLICATION)) UIBMP= else -ifeq ($(UNAME), Darwin) -UIBMP= -else UIBMP=$(BUILDDIR)/UI256.bmp endif -endif .SECONDEXPANSION: # $$(OBJ) is not populated until after this $(SIMLIB): $$(SIMOBJ) $(UIBMP) $(SILENT)$(shell rm -f $@) - $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null + $(call PRINTS,AR $(@F))$(AR) rcs $@ $(SIMOBJ) >/dev/null $(BUILDDIR)/$(BINARY): $$(OBJ) $(FIRMLIB) $(VOICESPEEXLIB) $(CORE_LIBS) $(SIMLIB) ifeq ($(UNAME), Darwin) |