summaryrefslogtreecommitdiff
path: root/apps/plugins/plugins.make
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-02-23 08:45:16 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-02-23 08:45:16 +0000
commit2e6d604bb60b84426596449e09a99e475ab5d69f (patch)
tree6f6ea0d58cb844efa35214764b1710485003c73c /apps/plugins/plugins.make
parentb1dccc47fd8488cef147961f247f0e34d57a0399 (diff)
downloadrockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.tar.gz
rockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.zip
Stop hiding errors by redirecting stderr to /dev/null. If we really need to do re-introduce somewhere we should rather make it dependent on the V variable so that make V=1 would still show the error and only "normal" builds would hide it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20090 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugins.make')
-rw-r--r--apps/plugins/plugins.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make
index 182bd11559..ef1b605d5d 100644
--- a/apps/plugins/plugins.make
+++ b/apps/plugins/plugins.make
@@ -47,7 +47,7 @@ $(ROCKS): $(PLUGINLIB) $(APPSDIR)/plugin.h $(PLUGINLINK_LDS) $(PLUGINBITMAPLIB)
47 47
48$(PLUGINLIB): $(PLUGINLIB_OBJ) 48$(PLUGINLIB): $(PLUGINLIB_OBJ)
49 $(SILENT)$(shell rm -f $@) 49 $(SILENT)$(shell rm -f $@)
50 $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null 2>&1 50 $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null
51 51
52$(PLUGINLINK_LDS): $(PLUGIN_LDS) 52$(PLUGINLINK_LDS): $(PLUGIN_LDS)
53 $(call PRINTS,PP $(@F)) 53 $(call PRINTS,PP $(@F))