diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-12-13 21:30:28 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-12-13 21:30:28 +0000 |
| commit | 69a5ff7f8ac16e40e96d5fbe805b9682f627ea19 (patch) | |
| tree | adbb9363134a6522e606ee05ad31f8c620611cf9 /tools | |
| parent | f5e996532d3ac9d1607bf5018bd4834fda722c2c (diff) | |
| download | rockbox-69a5ff7f8ac16e40e96d5fbe805b9682f627ea19.zip rockbox-69a5ff7f8ac16e40e96d5fbe805b9682f627ea19.tar.gz rockbox-69a5ff7f8ac16e40e96d5fbe805b9682f627ea19.tar.bz2 rockbox-69a5ff7f8ac16e40e96d5fbe805b9682f627ea19.tar.xz | |
Make lipo calls silent.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23982 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/rbspeex/Makefile | 2 | ||||
| -rw-r--r-- | tools/ucl/src/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile index 780fff2..267ef8d 100644 --- a/tools/rbspeex/Makefile +++ b/tools/rbspeex/Makefile @@ -101,7 +101,7 @@ endif librbspeex-universal: librbspeexi386.a librbspeexppc.a @echo lipo librbspeex.a $(SILENT) rm -f $(TARGET_DIR)librbspeex.a - lipo -create $(TARGET_DIR)librbspeexppc.a $(TARGET_DIR)librbspeexi386.a -output $(TARGET_DIR)librbspeex.a + $(SILENT)lipo -create $(TARGET_DIR)librbspeexppc.a $(TARGET_DIR)librbspeexi386.a -output $(TARGET_DIR)librbspeex.a clean: rm -f $(OBJS) $(TARGET_DIR)librbspeex* ../rbspeexenc ../rbspeexdec $(TARGET_DIR)dep-speex diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile index 018c29a..c519844 100644 --- a/tools/ucl/src/Makefile +++ b/tools/ucl/src/Makefile @@ -49,7 +49,7 @@ endif libucl-universal: $(TARGET_DIR)libucli386.a $(TARGET_DIR)libuclppc.a @echo lipo $(TARGET_DIR)libucl.a $(SILENT) rm -f $(TARGET_DIR)libucl.a - lipo -create $(TARGET_DIR)libuclppc.a $(TARGET_DIR)libucli386.a -output $(TARGET_DIR)libucl.a + $(SILENT)lipo -create $(TARGET_DIR)libuclppc.a $(TARGET_DIR)libucli386.a -output $(TARGET_DIR)libucl.a clean: rm -f $(TARGET_DIR)libucl*.a |