diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
commit | dca7d391f1f57085207def0321b89b18e6307c1b (patch) | |
tree | ca7f341881eaea3020a085873b6d00cae731b11d /apps/plugins/plugins.make | |
parent | 1f3d667b1a8d4a11d2745ce22b89566265b48142 (diff) | |
download | rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.gz rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.bz2 rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.zip |
make sure plugin.lds is not processed when building sims since it isn't used for anything then!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugins.make')
-rw-r--r-- | apps/plugins/plugins.make | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 0f6804d591..182bd11559 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -33,8 +33,10 @@ PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS) $(foreach dir,$(PLUGINSUBDIRS),$(eval include $(dir)/$(notdir $(dir)).make)) ### build data / rules +ifndef SIMVER PLUGIN_LDS := $(APPSDIR)/plugins/plugin.lds PLUGINLINK_LDS := $(BUILDDIR)/apps/plugins/plugin.link +endif OTHER_INC += -I$(APPSDIR)/plugins -I$(APPSDIR)/plugins/lib |