From: Yi Zhao Date: Wed, 17 Jul 2013 09:09:25 +0000 (+0800) Subject: rpm-postinsts.bb: Fix typo X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~36642 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfe3bb097df2a9e6488b4d50f61311b97959ed26;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git rpm-postinsts.bb: Fix typo Fix a typo for stderr redirection. Signed-off-by: Yi Zhao Signed-off-by: Saul Wold --- diff --git a/meta/recipes-devtools/rpm/rpm-postinsts.bb b/meta/recipes-devtools/rpm/rpm-postinsts.bb index c8fc1c33f45..ba58cd49b11 100644 --- a/meta/recipes-devtools/rpm/rpm-postinsts.bb +++ b/meta/recipes-devtools/rpm/rpm-postinsts.bb @@ -36,7 +36,7 @@ if [ "x$D" != "x" ] && [ -f $D/var/lib/rpm/Packages ]; then echo "Running postinst $i..." if [ -x $i ]; then if [ "$POSTINST_LOGGING" = "1" ]; then - $i >>$LOGFILE 2&>1 + $i >>$LOGFILE 2>&1 else $i fi