From: Chris Larson Date: Wed, 27 Oct 2010 18:58:36 +0000 (-0700) Subject: ed: fix build issue, fix install X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bae7ad2878291769d33eba2960e7fb627e99ca1;p=openembedded.git ed: fix build issue, fix install Signed-off-by: Chris Larson --- diff --git a/recipes/ed/ed.inc b/recipes/ed/ed.inc index 5372c0f1ae..f0cd8bd351 100644 --- a/recipes/ed/ed.inc +++ b/recipes/ed/ed.inc @@ -1,6 +1,6 @@ DESCRIPTION = "GNU ed is a line-oriented text editor" HOMEPAGE = "http://www.gnu.org/software/ed/" -INC_PR = "0" +INC_PR = "1" CONFIGUREOPTS = "\ '--srcdir=${S}' \ @@ -10,7 +10,7 @@ CONFIGUREOPTS = "\ '--datadir=${datadir}' \ '--infodir=${infodir}' \ '--sysconfdir=${sysconfdir}' \ - 'CXX=${CXX}' \ + 'CC=${CC}' \ 'CPPFLAGS=${CPPFLAGS}' \ 'CXXFLAGS=${CXXFLAGS}' \ 'LDFLAGS=${LDFLAGS}' \ @@ -22,4 +22,8 @@ do_configure () { ${S}/configure ${CONFIGUREOPTS} } +do_install () { + oe_runmake 'DESTDIR=${D}' install +} + BBCLASSEXTEND += "native nativesdk"