summaryrefslogtreecommitdiffstats
path: root/bin/build
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-09-09 20:04:20 +0000
committerChris Larson <clarson@kergoth.com>2003-09-09 20:04:20 +0000
commit9a567c7e9a5486beb6f7ca7bf71534900eee15bb (patch)
treec722ac561fe4535bb6ee3d9eb5308a613cc8c2eb /bin/build
parentd463ae45626f2d269ade06d2adace300e8d70fcf (diff)
downloadbitbake-contrib-9a567c7e9a5486beb6f7ca7bf71534900eee15bb.tar.gz
BUGFIX: perms on sed'd libtool binaries
Diffstat (limited to 'bin/build')
-rw-r--r--bin/build/oebuild.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/build/oebuild.sh b/bin/build/oebuild.sh
index ed34ec867..2f254d8c3 100644
--- a/bin/build/oebuild.sh
+++ b/bin/build/oebuild.sh
@@ -294,6 +294,7 @@ oe_runconf() {
for lt in `find ${S} -name libtool`; do
mv $lt $lt.old && \
cat $lt.old | sed -e 's,^sys_lib_search_path_spec=.*,sys_lib_search_path_spec="",; s,^sys_lib_dlsearch_path_spec=.*,sys_lib_dlsearch_path_spec="",' > $lt
+ chmod 755 $lt
done
}