The branch, master has been updated
via 1578e0a055cfccd062f256cc1bf4c893499ca167 (commit)
from 9d5581680a103de127ad17bd21bdf8385e62efc4 (commit)
- Log -----------------------------------------------------------------
commit 1578e0a055cfccd062f256cc1bf4c893499ca167
Author: Alexander Lehmann <lehmanna@xxxxxxxxx>
Date: Tue May 25 14:22:03 2010 +0200
Honor CPPFLAGS in python wrapper to improve build process on Mac OS X
-----------------------------------------------------------------------
Summary of changes:
bindings/python/Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index 2b47b6a..01de1fe 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -17,7 +17,7 @@ all-local: ftdi_wrap.c ftdi.py
$(PYTHON) setup.py build --compiler=mingw32 \
;; \
*) \
- $(PYTHON) setup.py build \
+ CPPFLAGS="$(CPPFLAGS)" $(PYTHON) setup.py build \
;; \
esac;
@@ -36,7 +36,7 @@ install-exec-local:
$(PYTHON) setup.py install --prefix="$$NATIVE_WINDOWS_PREFIX" \
;; \
*) \
- $(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix) \
+ CPPFLAGS="$(CPPFLAGS)" $(PYTHON) setup.py install
--prefix=$(DESTDIR)$(prefix) \
;; \
esac;
hooks/post-receive
--
A library to talk to FTDI chips
--
libftdi-git - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi-git+unsubscribe@xxxxxxxxxxxxxxxxxxxxxxx
|