summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-06-26 20:25:15 +0000
committerChris Larson <clarson@kergoth.com>2003-06-26 20:25:15 +0000
commitb9118e910814dd69a750e79df463952dc3c787bf (patch)
tree83bbddf69cc2b3fd8cf6494d237c3103d56d766d
parent2d973a9f47e37f49fcfea251cfef4b9eb8c25133 (diff)
glibc-2.3.1.oe:
Minor message display change addtask-2.0.oe: Correct the addtask test per semi-recent addtask syntax change. BKrev: 3efb56abqGwsZMWByr5F9bpn2YuJwg
-rw-r--r--content/glibc-2.3.1.oe3
-rw-r--r--test~/addtask-2.0.oe2
2 files changed, 3 insertions, 2 deletions
diff --git a/content/glibc-2.3.1.oe b/content/glibc-2.3.1.oe
index 32f940bce4..e88f45bcad 100644
--- a/content/glibc-2.3.1.oe
+++ b/content/glibc-2.3.1.oe
@@ -17,7 +17,8 @@ FILES_libc6="/lib/libc.so.6"
inherit base
do_unpack() {
- base_do_unpack $@ || die "unpacking failed"
+ base_do_unpack $@ || die
+ test -d ${S} || die
mv ${WORKDIR}/linuxthreads{,_db} ${S}/
}
diff --git a/test~/addtask-2.0.oe b/test~/addtask-2.0.oe
index 9f9ae6a28c..6212041b33 100644
--- a/test~/addtask-2.0.oe
+++ b/test~/addtask-2.0.oe
@@ -5,4 +5,4 @@ do_whee() {
}
# insert whee task between compile and unpack
-addtask whee after unpack before compile
+addtask whee after do_unpack before do_compile