diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-02-08 22:36:23 +0100 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-02-08 22:38:57 +0100 |
| commit | e98e64b9886b67626d161a0d7f8d3097088726be (patch) | |
| tree | 40cf519be9daf8d27192671f108996f5ecf4a692 | |
| parent | 02a02efee086f0bcaea6acdaeb5e584ed48c6002 (diff) | |
| download | rockbox-e98e64b9886b67626d161a0d7f8d3097088726be.zip rockbox-e98e64b9886b67626d161a0d7f8d3097088726be.tar.gz rockbox-e98e64b9886b67626d161a0d7f8d3097088726be.tar.bz2 rockbox-e98e64b9886b67626d161a0d7f8d3097088726be.tar.xz | |
Fix Theme Editor build.
The skin_parser now needs __PCTOOL__ set to build libskin_parser.a properly for
use with the Theme Editor.
Change-Id: I48a518fa296cc8ec5d0e3022baaedd796afe7c5f
| -rw-r--r-- | lib/skin_parser/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/skin_parser/Makefile b/lib/skin_parser/Makefile index 5105b04..08b7fa1 100644 --- a/lib/skin_parser/Makefile +++ b/lib/skin_parser/Makefile @@ -4,7 +4,6 @@ # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ # \/ \/ \/ \/ \/ -# $Id$ # ifndef V @@ -20,6 +19,7 @@ TARGET_DIR ?= ./ BUILDDIR ?= $(TARGET_DIR)build TARGETPLATFORM ?= $(shell uname) +CFLAGS += -D__PCTOOL__ ifdef RBARCH CFLAGS += -arch $(RBARCH) OBJDIR = $(BUILDDIR)/$(RBARCH)/ |