[source] e2fsprogs: Honor the global verbose flag
LEDE Commits
lede-commits at lists.infradead.org
Thu Sep 8 04:40:13 PDT 2016
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/9a2f2f32cfd6f3230957a93d88ae48bb0ef2cb4a
commit 9a2f2f32cfd6f3230957a93d88ae48bb0ef2cb4a
Author: Florian Fainelli <f.fainelli at gmail.com>
AuthorDate: Wed Sep 7 10:25:33 2016 -0700
e2fsprogs: Honor the global verbose flag
Look for OPENWRT_VERBOSE and pass it down to the e2fsprogs entry-point
Makefile.
Signed-off-by: Florian Fainelli <f.fainelli at gmail.com>
---
package/utils/e2fsprogs/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/utils/e2fsprogs/Makefile b/package/utils/e2fsprogs/Makefile
index 247b5ed..4e25ab0 100644
--- a/package/utils/e2fsprogs/Makefile
+++ b/package/utils/e2fsprogs/Makefile
@@ -131,12 +131,14 @@ define Build/Compile
CFLAGS="" \
CPPFLAGS="" \
LDFLAGS="" \
+ V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) \
subst
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
LDFLAGS=-Wl,--gc-sections \
BUILDCC="$(HOSTCC)" \
DESTDIR="$(PKG_INSTALL_DIR)" \
LIBBLKID="$(PKG_BUILD_DIR)/lib/libblkid.a -luuid" \
+ V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) \
all
endef
More information about the lede-commits
mailing list