aboutsummaryrefslogtreecommitdiffstats
path: root/pango
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-01-20 17:38:29 +0000
committerChris Larson <clarson@kergoth.com>2004-01-20 17:38:29 +0000
commit7cf44273749954a305446e0ed8ec70473cfa2a94 (patch)
tree7e7546160bff84c00d08e8320f8437fcaa3dc21a /pango
parent09fe066c24502d13af3f8019a4c8f9a478b10a2a (diff)
downloadopenembedded-7cf44273749954a305446e0ed8ec70473cfa2a94.tar.gz
BUGFIX: Fix pango build of the native gen-all-unicode.
BKrev: 400d6795bRd5cXDow98XVpcgVsZ-aA
Diffstat (limited to 'pango')
-rw-r--r--pango/pango_1.2.5.oe3
1 files changed, 2 insertions, 1 deletions
diff --git a/pango/pango_1.2.5.oe b/pango/pango_1.2.5.oe
index 0f75c79f6c..b63e18b3f3 100644
--- a/pango/pango_1.2.5.oe
+++ b/pango/pango_1.2.5.oe
@@ -14,7 +14,8 @@ FILES_${PN}-doc:=${FILES_pango-doc} ${datadir}/gtk-doc
do_compile_prepend () {
if test -e ${S}/${HOST_PREFIX}libtool; then LIBTOOL=${S}/${HOST_PREFIX}libtool; else LIBTOOL=${S}/libtool; fi
(cd tests && \
- /bin/sh $LIBTOOL --silent --mode=link ${BUILD_CC} ${BUILD_CFLAGS} -I${STAGING_INCDIR}/glib-2.0 -lglib-2.0 gen-all-unicode.c -o gen-all-unicode && \
+ /bin/sh $LIBTOOL --silent --mode=compile ${BUILD_CC} ${BUILD_CFLAGS} -I${STAGING_INCDIR}/glib-2.0 gen-all-unicode.c -c -o gen-all-unicode.o && \
+ /bin/sh $LIBTOOL --silent --mode=link ${BUILD_CC} ${BUILD_LDFLAGS} -lglib-2.0 gen-all-unicode.o -o gen-all-unicode && \
touch gen-all-unicode.c .libs/gen-all-unicode gen-all-unicode gen-all-unicode.o .deps/gen-all-unicode.Po)
}