summaryrefslogtreecommitdiff
path: root/tools/ucl
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2013-05-12 12:18:16 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2013-06-09 16:54:59 +0200
commit43d8d6fece984b5ee3d4121a8982ac4919225d68 (patch)
tree373bb9081ebd2229f74074f597ca70487711ae95 /tools/ucl
parent15fa7f866fe3a17afc9699f86e52aef7cb1a09d0 (diff)
downloadrockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.zip
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.gz
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.bz2
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.xz
Don't pass ar output to /dev/null.
Since ar is not running in verbose mode there is normally no output to get rid of, and in case of errors it's useful to see them. Also, Windows doesn't know about /dev/null. Make dependency generation for librbspeex more silent as well. Change-Id: Ie0d4a406e665ebd67331d6cd1fa2fc02f8bf21b9
Diffstat (limited to 'tools/ucl')
-rw-r--r--tools/ucl/src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
index 1f3207f..ca29d7c 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -72,7 +72,7 @@ $(TARGET_DIR)ucl.dll: $(OBJS)
$(TARGET_DIR)libucl$(RBARCH).a: $(OBJS)
@echo AR $(notdir $@)
- $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS) >/dev/null 2>&1
+ $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS)
$(OBJDIR)/%.o: %.c
@echo CC $<