diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-08-14 11:56:06 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-17 09:34:46 +0100 |
commit | a4aaaee39de6b603e847c884d71f05cd7bbce9fe (patch) | |
tree | 33e633afbf17efa56bfb370bbe5f0af0daa6be00 /meta | |
parent | 8e8316c8f07ca1af021d06ba87e23af1c1a19e2b (diff) | |
download | poky-a4aaaee39de6b603e847c884d71f05cd7bbce9fe.tar.gz |
tcl: fix native build
commit a2e6b265ed66d5f274507dcfbb3b91c30cc12e3a introduced one patch
to fix non-native build, which however breaks native build.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/tcltk/tcl_8.5.8.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/packages/tcltk/tcl_8.5.8.bb b/meta/packages/tcltk/tcl_8.5.8.bb index 7a03c13f68..880340067c 100644 --- a/meta/packages/tcltk/tcl_8.5.8.bb +++ b/meta/packages/tcltk/tcl_8.5.8.bb | |||
@@ -11,11 +11,15 @@ LIC_CHKSUM_FILES = "file://../license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 | |||
11 | file://../win/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ | 11 | file://../win/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ |
12 | " | 12 | " |
13 | 13 | ||
14 | PR = "r1" | 14 | PR = "r2" |
15 | 15 | ||
16 | SRC_URI = " ${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ | 16 | BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ |
17 | file://tcl-add-soname.patch \ | 17 | file://tcl-add-soname.patch" |
18 | file://fix_non_native_build_issue.patch" | 18 | |
19 | SRC_URI = "${BASE_SRC_URI} \ | ||
20 | file://fix_non_native_build_issue.patch" | ||
21 | |||
22 | SRC_URI_virtclass-native = "${BASE_SRC_URI}" | ||
19 | 23 | ||
20 | S = "${WORKDIR}/tcl${PV}/unix" | 24 | S = "${WORKDIR}/tcl${PV}/unix" |
21 | 25 | ||