diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.13.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.13.bb b/meta/recipes-devtools/tcltk/tcl_8.5.13.bb index 27a9ef66c1..01fe36dc97 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.5.13.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.5.13.bb | |||
@@ -34,12 +34,12 @@ DEPENDS_class-native = "" | |||
34 | EXTRA_OECONF = "--enable-threads --disable-rpath" | 34 | EXTRA_OECONF = "--enable-threads --disable-rpath" |
35 | 35 | ||
36 | do_configure() { | 36 | do_configure() { |
37 | gnu-configize | 37 | ( cd ${S}; gnu-configize ) |
38 | oe_runconf | 38 | oe_runconf |
39 | } | 39 | } |
40 | 40 | ||
41 | do_compile_prepend() { | 41 | do_compile_prepend() { |
42 | echo > ../compat/fixstrtod.c | 42 | echo > ${S}/../compat/fixstrtod.c |
43 | } | 43 | } |
44 | 44 | ||
45 | do_install() { | 45 | do_install() { |
@@ -52,7 +52,7 @@ do_install() { | |||
52 | install -d ${D}${bindir_crossscripts} | 52 | install -d ${D}${bindir_crossscripts} |
53 | install -m 0755 tclConfig.sh ${D}${bindir_crossscripts} | 53 | install -m 0755 tclConfig.sh ${D}${bindir_crossscripts} |
54 | cd .. | 54 | cd .. |
55 | for dir in compat generic unix | 55 | for dir in ${S}/../compat ${S}/../generic ${S}/../unix |
56 | do | 56 | do |
57 | install -d ${D}${includedir}/tcl${PV}/$dir | 57 | install -d ${D}${includedir}/tcl${PV}/$dir |
58 | install -m 0644 $dir/*.h ${D}${includedir}/tcl${PV}/$dir/ | 58 | install -m 0644 $dir/*.h ${D}${includedir}/tcl${PV}/$dir/ |