summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmeta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
index 95eff04e17..f84a7e18c8 100755
--- a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
+++ b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
@@ -67,7 +67,7 @@ exec_postinst_scriptlets() {
67 echo "Running postinst $i..." 67 echo "Running postinst $i..."
68 [ "$POSTINST_LOGGING" = "1" ] && eval echo "Running postinst $i..." $append_log 68 [ "$POSTINST_LOGGING" = "1" ] && eval echo "Running postinst $i..." $append_log
69 if [ -x $i ]; then 69 if [ -x $i ]; then
70 eval sh -c $i $append_log 70 (sh -c $i $append_log)
71 rm $i 71 rm $i
72 else 72 else
73 echo "ERROR: postinst $i failed." 73 echo "ERROR: postinst $i failed."