summaryrefslogtreecommitdiff
path: root/flnx/flnx_0.18.oe
diff options
context:
space:
mode:
Diffstat (limited to 'flnx/flnx_0.18.oe')
-rw-r--r--flnx/flnx_0.18.oe3
1 files changed, 1 insertions, 2 deletions
diff --git a/flnx/flnx_0.18.oe b/flnx/flnx_0.18.oe
index c262e99f8d..af74fc3196 100644
--- a/flnx/flnx_0.18.oe
+++ b/flnx/flnx_0.18.oe
@@ -17,9 +17,8 @@ python do_fetch () {
}
python do_unpack () {
- import string
src_uri = oe.data.getVar("SRC_URI", d)
- src_uri = string.replace(src_uri, "-tar", ".tar")
+ src_uri = src_uri.replace("-tar", ".tar")
oe.data.setVar("SRC_URI", src_uri, d)
oe.build.exec_func("base_do_unpack", d)
}