summaryrefslogtreecommitdiffstats
path: root/bin/build
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-06-10 22:39:06 +0000
committerChris Larson <clarson@kergoth.com>2003-06-10 22:39:06 +0000
commit7ab19f7c7d50a018323d5604f2a8bdf3dfe1b0a2 (patch)
tree338568f19937989f1344ecbc7d4b5d4beb091b2b /bin/build
parent8af9c191b1570a14f7602201f99ae7633cf95dce (diff)
downloadbitbake-contrib-7ab19f7c7d50a018323d5604f2a8bdf3dfe1b0a2.tar.gz
Diffstat (limited to 'bin/build')
-rw-r--r--bin/build/oebuild.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/build/oebuild.sh b/bin/build/oebuild.sh
index d9a9ad90c..93304272b 100644
--- a/bin/build/oebuild.sh
+++ b/bin/build/oebuild.sh
@@ -247,7 +247,11 @@ unpack() {
fi
;;
*)
- oefatal "unpack ${x}: file format not recognized"
+ if [ -d "${x}" ]; then
+ cp -a ${x} .
+ else
+ oefatal "unpack ${x}: file format not recognized"
+ fi
;;
esac
done