diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:45 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:45 +0000 |
commit | ddd73e012c6079e205528c9781c4122f3e046d5f (patch) | |
tree | c20d0818f7693f384ffefbd23265b8a73baa247a /package | |
parent | 2964bff64e99ff26554c41bc8600b687aff1f2f6 (diff) | |
download | buildroot-novena-ddd73e012c6079e205528c9781c4122f3e046d5f.tar.gz buildroot-novena-ddd73e012c6079e205528c9781c4122f3e046d5f.zip |
Makefile.autotools.in: quiet configure on silent (-s) builds
Use --quiet configure argument when make is invoked with the -s (silent)
option.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index c01a73eb1..07bb32d47 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -215,6 +215,7 @@ $(BUILD_DIR)/%/.stamp_configured: --prefix=/usr \ --exec-prefix=/usr \ --sysconfdir=/etc \ + $(if $(findstring s,$(MAKEFLAGS)),--quiet,) $($(PKG)_CONF_OPT) $(Q)touch $@ |