diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-05-29 23:27:17 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-30 13:11:42 +0200 |
commit | 95e54f65a23fc75864a1a29f7d9ff7b7ddfc3dcb (patch) | |
tree | 53e9eaaf5e2d3592f7540227bb2de769fbb63a7b | |
parent | d3bde0a64edb5a3392314d2cdd2c4e4057d15831 (diff) | |
download | buildroot-novena-95e54f65a23fc75864a1a29f7d9ff7b7ddfc3dcb.tar.gz buildroot-novena-95e54f65a23fc75864a1a29f7d9ff7b7ddfc3dcb.zip |
libplayer: Remove unsupported QUIET variable
Fixes the following compilation problem when building with 'make -s'
Unknown option "-q".
See ./configure --help for available options.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/libplayer/libplayer.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libplayer/libplayer.mk b/package/libplayer/libplayer.mk index 8f655aedd..511c7f690 100644 --- a/package/libplayer/libplayer.mk +++ b/package/libplayer/libplayer.mk @@ -18,7 +18,7 @@ define LIBPLAYER_CONFIGURE_CMDS --prefix=/usr \ --cross-compile \ $(SHARED_STATIC_LIBS_OPTS) \ - $(QUIET) $(LIBPLAYER_CONF_OPT) \ + $(LIBPLAYER_CONF_OPT) \ ) endef |