diff options
| author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2014-10-22 18:20:11 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-25 01:42:01 +0200 |
| commit | 9a4e217b73bbf8fe0619f03c66f7301c4126b6a7 (patch) | |
| tree | b730596e9f5811d5342f16391ce8b7b373b3cb83 /package/Makefile.in | |
| parent | 1586ce3a3d427419bb83e6065f3536bfc36cdb13 (diff) | |
| download | buildroot-9a4e217b73bbf8fe0619f03c66f7301c4126b6a7.tar.gz buildroot-9a4e217b73bbf8fe0619f03c66f7301c4126b6a7.zip | |
apply-patches.sh: don't print anything when "make -s" is used
The make "-s" option is used to enable the "Silent operation" so if that
option is used don't print anything as far as there isn't any error.
Add the "-s" option to "apply-patches.sh" to enable silent operation.
[Peter: use the existing QUIET variable]
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/Makefile.in')
| -rw-r--r-- | package/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index dd6253711b..7c929ef4cd 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -222,7 +222,7 @@ FLEX := $(shell which flex || type -p flex) BISON := $(shell which bison || type -p bison) SED := $(shell which sed || type -p sed) -i -e -APPLY_PATCHES = support/scripts/apply-patches.sh +APPLY_PATCHES = support/scripts/apply-patches.sh $(if $(QUIET),-s) HOST_CPPFLAGS = -I$(HOST_DIR)/usr/include HOST_CFLAGS ?= -O2 |

