diff options
| author | Florian Fainelli | 2008-09-26 16:19:42 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2008-09-26 16:19:42 +0000 |
| commit | 44d71eade23c229ef6be6b29b263cbb547aed566 (patch) | |
| tree | 5866576892c6c59702623bcacbe0814ae5b58e1f | |
| parent | b5645a2584518517ae28e17ef009efda99ffe101 (diff) | |
| download | archive-44d71eade23c229ef6be6b29b263cbb547aed566.tar.gz | |
pysqlite compilation fails on 64-bits nomultilib systesms, so add a prereq check on the gnu/stubs-32.h
SVN-Revision: 12717
| -rw-r--r-- | lang/pysqlite/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/pysqlite/Makefile b/lang/pysqlite/Makefile index ee74d7fccc..b5896150fa 100644 --- a/lang/pysqlite/Makefile +++ b/lang/pysqlite/Makefile @@ -49,3 +49,7 @@ endef $(eval $(call PyPackage,python-sqlite)) $(eval $(call BuildPackage,python-sqlite)) + +$(eval $(call RequireHeader,/usr/include/gnu/stubs-32.h, \ + $(PKG_NAME) requires a 32-bits toolchain. \ +)) |