diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-06-02 11:56:40 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-06-02 11:59:52 -0400 |
| commit | 81ba3a4aca8b3cc152dc82fd8eae33a34a66f654 (patch) | |
| tree | dd5e64ce1d0d615ca2def6fd0ace133c09270fca | |
| parent | 0b100516302f9aef960472bf592a8c105390df2a (diff) | |
| download | meta-cloud-services-81ba3a4aca8b3cc152dc82fd8eae33a34a66f654.tar.gz | |
uwsgi: fix uuid/uuid.h build error
uwsgi needs uuid/uuid.h to be present, otherwise we get the following
build error:
| In file included from core/utils.c:1:0:
| ./uwsgi.h:188:23: fatal error: uuid/uuid.h: No such file or directory
| #include <uuid/uuid.h>
| ^
| compilation terminated.
Adding a e2fsprogs dependency gets the header file properly installed before
the build starts.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
| -rw-r--r-- | meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb index dba9bce..e8c0fb4 100644 --- a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb +++ b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb | |||
| @@ -17,6 +17,7 @@ S = "${WORKDIR}/git" | |||
| 17 | inherit setuptools | 17 | inherit setuptools |
| 18 | 18 | ||
| 19 | DEPENDS += " \ | 19 | DEPENDS += " \ |
| 20 | e2fsprogs \ | ||
| 20 | python-pip \ | 21 | python-pip \ |
| 21 | python-six \ | 22 | python-six \ |
| 22 | " | 23 | " |
