diff mbox series

[ovs-dev] python: Support --enable-silent-rules.

Message ID 20181015165153.19182-1-blp@ovn.org
State Not Applicable
Headers show
Series [ovs-dev] python: Support --enable-silent-rules. | expand

Commit Message

Ben Pfaff Oct. 15, 2018, 4:51 p.m. UTC
CC: Terry Wilson <twilson@redhat.com>
Fixes: a7be68a4d777 ("Test the Python C JSON extension")
Signed-off-by: Ben Pfaff <blp@ovn.org>
---
 python/automake.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Ben Pfaff Oct. 15, 2018, 6:18 p.m. UTC | #1
On Mon, Oct 15, 2018 at 09:51:53AM -0700, Ben Pfaff wrote:
> CC: Terry Wilson <twilson@redhat.com>
> Fixes: a7be68a4d777 ("Test the Python C JSON extension")
> Signed-off-by: Ben Pfaff <blp@ovn.org>

This isn't needed given the revert, but I'd hope to see it folded into
any new version.
diff mbox series

Patch

diff --git a/python/automake.mk b/python/automake.mk
index 21547f7ba683..dd013941474c 100644
--- a/python/automake.mk
+++ b/python/automake.mk
@@ -95,9 +95,9 @@  pypi-upload: $(srcdir)/python/ovs/version.py $(ovs_pyfiles) python/ovs/dirs.py
 
 ALL_LOCAL += python-build
 python-build:$(lib_LTLIBRARIES)
-	(cd $(srcdir)/python/ && $(PYTHON) setup.py build_py -d $(abs_top_builddir)/python && $(PYTHON) setup.py build_ext -b $(abs_top_builddir)/python -I$(abs_top_srcdir)/include:$(abs_top_builddir)/include -L$(abs_top_builddir)/lib/.libs)
+	$(AM_V_GEN)(cd $(srcdir)/python/ && $(PYTHON) setup.py build_py -d $(abs_top_builddir)/python && $(PYTHON) setup.py build_ext -b $(abs_top_builddir)/python -I$(abs_top_srcdir)/include:$(abs_top_builddir)/include -L$(abs_top_builddir)/lib/.libs)
 if HAVE_PYTHON3
-	(cd $(srcdir)/python/ && $(PYTHON3) setup.py build_py -d $(abs_top_builddir)/python && $(PYTHON3) setup.py build_ext -b $(abs_top_builddir)/python -I$(abs_top_srcdir)/include:$(abs_top_builddir)/include  -L$(abs_top_builddir)/lib/.libs)
+	$(AM_V_GEN)(cd $(srcdir)/python/ && $(PYTHON3) setup.py build_py -d $(abs_top_builddir)/python && $(PYTHON3) setup.py build_ext -b $(abs_top_builddir)/python -I$(abs_top_srcdir)/include:$(abs_top_builddir)/include  -L$(abs_top_builddir)/lib/.libs)
 
 CLEAN_LOCAL += python-clean
 python-clean: