aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ed
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-27 11:58:36 -0700
committerChris Larson <chris_larson@mentor.com>2010-10-27 11:59:19 -0700
commit9bae7ad2878291769d33eba2960e7fb627e99ca1 (patch)
treebbbebb7ac300ff4fe3841aa86ed4533f8366afa7 /recipes/ed
parente65b9b41aec4573a3fb442688ad4365b5cb5ae54 (diff)
downloadopenembedded-9bae7ad2878291769d33eba2960e7fb627e99ca1.tar.gz
ed: fix build issue, fix install
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes/ed')
-rw-r--r--recipes/ed/ed.inc8
1 files changed, 6 insertions, 2 deletions
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"