From: Yi Zhao Date: Wed, 17 Jul 2013 09:09:24 +0000 (+0800) Subject: run-postinsts: Fix typo X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~36643 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b03c670d44b28c673393468bbe62919f3f8186de;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 2593066da0f..d1bf582b0cb 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