diff options
Diffstat (limited to 'meta/recipes-devtools')
-rwxr-xr-x | meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts index f547a7b7bd..eb3839596a 100755 --- a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts +++ b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts @@ -54,13 +54,13 @@ exec_postinst_scriptlets() { for i in `ls $pi_dir`; do i=$pi_dir/$i echo "Running postinst $i..." - [ "$POSTINST_LOGGING" = "1" ] && eval echo "Running postinst $i..." $append_log + [ "$POSTINST_LOGGING" = "1" ] && eval echo "Running postinst $i..." \$append_log if [ -x $i ]; then - eval sh -c $i $append_log + eval sh -c $i \$append_log rm $i else echo "ERROR: postinst $i failed." - [ "$POSTINST_LOGGING" = "1" ] && eval echo "ERROR: postinst $i failed." $append_log + [ "$POSTINST_LOGGING" = "1" ] && eval echo "ERROR: postinst $i failed." \$append_log remove_pi_dir=0 fi done @@ -70,11 +70,11 @@ remove_pi_dir=1 if $pm_installed; then case $pm in "ipk") - eval opkg-cl configure $append_log + eval opkg-cl configure \$append_log ;; "deb") - eval dpkg --configure -a $append_log + eval dpkg --configure -a \$append_log ;; esac else |