summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/icecc-create-env
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/icecc-create-env')
-rwxr-xr-xmeta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env b/meta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env
index 723f1f9bd9..c838256f74 100755
--- a/meta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env
+++ b/meta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env
@@ -122,6 +122,16 @@ then
122 add_file $pluginfile /usr${pluginfile#*usr} 122 add_file $pluginfile /usr${pluginfile#*usr}
123fi 123fi
124 124
125# for testing the environment is usable at all
126if test -x /bin/true; then
127 add_file /bin/true
128elif test -x /usr/bin/true; then
129 add_file /usr/bin/true /bin/true
130else
131 echo "'true' not found"
132 exit 1
133fi
134
125tempdir=`mktemp -d /tmp/iceccenvXXXXXX` 135tempdir=`mktemp -d /tmp/iceccenvXXXXXX`
126new_target_files= 136new_target_files=
127for i in $target_files; do 137for i in $target_files; do