From: Yi Zhao Date: Wed, 17 Jul 2013 09:09:24 +0000 (+0800) Subject: run-postinsts: Fix typo X-Git-Tag: 2015-4~5806 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b03c670d44b28c673393468bbe62919f3f8186de;p=openembedded-core.git run-postinsts: Fix typo Fix a typo for stderr redirection. Signed-off-by: Yi Zhao Signed-off-by: Saul Wold --- diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts index 2593066da0..d1bf582b0c 100755 --- a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts +++ b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts @@ -26,7 +26,7 @@ for i in `ls $pi_dir`; do echo "Running postinst $i..." if [ -x $i ]; then if [ "$POSTINST_LOGGING" = "1" ]; then - sh -c $i >>$LOGFILE 2&>1 + sh -c $i >>$LOGFILE 2>&1 else sh -c $i fi