python: Silence irrelevant build warnings.
This commit is contained in:
parent
dfa4cd0e57
commit
8eb10b625e
11
Makefile.am
11
Makefile.am
|
@ -430,17 +430,18 @@ PDIR = bindings/python
|
|||
|
||||
python-build: $(PDIR)/timestamp
|
||||
|
||||
python-cleanclean:
|
||||
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all 2> >(grep -v "can't clean it")
|
||||
|
||||
$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
|
||||
$(library_include_HEADERS)
|
||||
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all
|
||||
$(AM_V_GEN)cd $(PDIR) && python setup.py --quiet build
|
||||
$(library_include_HEADERS) python-cleanclean
|
||||
$(AM_V_GEN)cd $(PDIR) && python setup.py --quiet build 2> >(grep -v "command line option.*Wstrict-prototypes")
|
||||
$(AM_V_at)touch $(PDIR)/timestamp
|
||||
|
||||
python-install:
|
||||
cd $(PDIR) && python setup.py --quiet install --prefix $(prefix)
|
||||
|
||||
python-clean:
|
||||
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all
|
||||
python-clean: python-cleanclean
|
||||
$(AM_V_at)rm -f $(PDIR)/timestamp
|
||||
|
||||
BUILD_EXTRA += python-build
|
||||
|
|
Loading…
Reference in New Issue