summaryrefslogtreecommitdiff
path: root/tools/ucl/src
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/src
parent15fa7f866fe3a17afc9699f86e52aef7cb1a09d0 (diff)
downloadrockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.gz
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.zip
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/src')
-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 1f3207f426..ca29d7c8a8 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -72,7 +72,7 @@ $(TARGET_DIR)ucl.dll: $(OBJS)
72 72
73$(TARGET_DIR)libucl$(RBARCH).a: $(OBJS) 73$(TARGET_DIR)libucl$(RBARCH).a: $(OBJS)
74 @echo AR $(notdir $@) 74 @echo AR $(notdir $@)
75 $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS) >/dev/null 2>&1 75 $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS)
76 76
77$(OBJDIR)/%.o: %.c 77$(OBJDIR)/%.o: %.c
78 @echo CC $< 78 @echo CC $<