diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-01-16 11:17:08 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-16 11:17:08 +0000 |
commit | bab3b6997fea8de97fb325f5d1a069f78be8d038 (patch) | |
tree | f4b30a6eec25e9ef99113abfa8ea55e8cb0fd416 /packages/sylpheed | |
parent | cfc1ff3cfc068e1d69555499bd8ac58eaeef3784 (diff) |
sylpheed_1.9.12.bb : fix hard coded -I/usr/include that happens
Added to EXTRA_OECONF --includedir=${STAGING_INCDIR} as otherwise
I end up with a -I/usr/include which breaks building on my system
as it trys to get FD_* macros from files in /usr/include and not
the arm compatible ones.
Diffstat (limited to 'packages/sylpheed')
-rw-r--r-- | packages/sylpheed/sylpheed_1.9.12.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sylpheed/sylpheed_1.9.12.bb b/packages/sylpheed/sylpheed_1.9.12.bb index 00da7907a7..a6b8cb1738 100644 --- a/packages/sylpheed/sylpheed_1.9.12.bb +++ b/packages/sylpheed/sylpheed_1.9.12.bb @@ -11,7 +11,7 @@ SRC_URI = "http://sylpheed.good-day.net/sylpheed/v1.9/sylpheed-1.9.12.tar.bz2 \ FILES_${PN} = "${bindir} ${datadir}/pixmaps ${datadir}/applications" FILES_${PN}-doc += "${datadir}" -EXTRA_OECONF = "--enable-gnutls" +EXTRA_OECONF = "--enable-gnutls --includedir=${STAGING_INCDIR}" CFLAGS += "-D_GNU_SOURCE" |