diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2013-07-17 17:09:25 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-18 12:21:12 -0700 |
commit | cfe3bb097df2a9e6488b4d50f61311b97959ed26 (patch) | |
tree | 80e173903fed51d65fe8d8b31590a6cd43051510 /meta/recipes-devtools/rpm | |
parent | b03c670d44b28c673393468bbe62919f3f8186de (diff) | |
download | openembedded-core-cfe3bb097df2a9e6488b4d50f61311b97959ed26.tar.gz openembedded-core-cfe3bb097df2a9e6488b4d50f61311b97959ed26.tar.bz2 openembedded-core-cfe3bb097df2a9e6488b4d50f61311b97959ed26.zip |
rpm-postinsts.bb: Fix typo
Fix a typo for stderr redirection.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/rpm')
-rw-r--r-- | meta/recipes-devtools/rpm/rpm-postinsts.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm-postinsts.bb b/meta/recipes-devtools/rpm/rpm-postinsts.bb index c8fc1c33f4..ba58cd49b1 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 |