diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2009-02-23 08:45:16 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-23 08:45:16 +0000 |
| commit | 2e6d604bb60b84426596449e09a99e475ab5d69f (patch) | |
| tree | 6f6ea0d58cb844efa35214764b1710485003c73c /apps/plugins | |
| parent | b1dccc47fd8488cef147961f247f0e34d57a0399 (diff) | |
| download | rockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.zip rockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.tar.gz rockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.tar.bz2 rockbox-2e6d604bb60b84426596449e09a99e475ab5d69f.tar.xz | |
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')
| -rw-r--r-- | apps/plugins/bitmaps/pluginbitmaps.make | 2 | ||||
| -rw-r--r-- | apps/plugins/plugins.make | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/bitmaps/pluginbitmaps.make b/apps/plugins/bitmaps/pluginbitmaps.make index b91e38e..fa5b9ef 100644 --- a/apps/plugins/bitmaps/pluginbitmaps.make +++ b/apps/plugins/bitmaps/pluginbitmaps.make @@ -38,7 +38,7 @@ $(PBMPHFILES): $(PLUGIN_BITMAPS) $(PLUGINBITMAPLIB): $(PLUGIN_BITMAPS) $(SILENT)$(shell rm -f $@) - $(call PRINTS,AR $(@F))$(AR) rs $@ $+ >/dev/null 2>&1 + $(call PRINTS,AR $(@F))$(AR) rs $@ $+ >/dev/null # pattern rules to create .c files from .bmp, one for each subdir: $(BUILDDIR)/apps/plugins/bitmaps/mono/%.c: $(ROOTDIR)/apps/plugins/bitmaps/mono/%.bmp $(TOOLSDIR)/bmp2rb diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 182bd11..ef1b605 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -47,7 +47,7 @@ $(ROCKS): $(PLUGINLIB) $(APPSDIR)/plugin.h $(PLUGINLINK_LDS) $(PLUGINBITMAPLIB) $(PLUGINLIB): $(PLUGINLIB_OBJ) $(SILENT)$(shell rm -f $@) - $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null 2>&1 + $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null $(PLUGINLINK_LDS): $(PLUGIN_LDS) $(call PRINTS,PP $(@F)) |