diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-05 04:20:31 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-05 04:20:31 -0400 |
commit | 87cfef221a189deebc79a606800585f75ab05395 (patch) | |
tree | 1e480a3759592612535a69456a11c41cfa4a1492 /Makefile.am | |
parent | 0e2a3a9c0053a7f091a8b941a452120b6066b761 (diff) | |
download | fork-ledger-87cfef221a189deebc79a606800585f75ab05395.tar.gz fork-ledger-87cfef221a189deebc79a606800585f75ab05395.tar.bz2 fork-ledger-87cfef221a189deebc79a606800585f75ab05395.zip |
Quiet down the python module build.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index e8ca04c9..3e97931d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -236,7 +236,7 @@ install-exec-hook: CFLAGS="$(CPPFLAGS) -I$(srcdir) -I$$BUILD_DIR $(libledger_python_la_CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)" \ LDFLAGS="$(LDFLAGS) -L$$BUILD_DIR -L$$BUILD_DIR/.libs" \ ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" VERSION="$(VERSION)" \ - SRCDIR="$$SRC_DIR" $(PYTHON) python/setup.py install \ + SRCDIR="$$SRC_DIR" $(PYTHON) python/setup.py -q install \ --skip-build \ --root=$(DESTDIR)/ \ --prefix=$(prefix) \ @@ -263,13 +263,14 @@ PYLIBS = ledger_python \ boost_python$(BOOST_SUFFIX) ledger.so: $(ledger_so_SOURCES) $(ledger_so_DEPENDENCIES) - BUILD_DIR=`cd $(top_builddir); pwd`; \ + @echo " PY ledger.so" + @BUILD_DIR=`cd $(top_builddir); pwd`; \ SRC_DIR=`cd $(srcdir); pwd`; \ (cd $(srcdir); \ CFLAGS="$(CPPFLAGS) -I$(srcdir) -I$$BUILD_DIR $(libledger_python_la_CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)" \ LDFLAGS="$(LDFLAGS) -L$$BUILD_DIR -L$$BUILD_DIR/.libs" \ ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" VERSION="$(VERSION)" \ - SRCDIR="$$SRC_DIR" $(PYTHON) python/setup.py build \ + SRCDIR="$$SRC_DIR" $(PYTHON) python/setup.py -q build \ --build-lib=$$BUILD_DIR/ --build-temp=$$BUILD_DIR/build -f) endif |