diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2013-07-17 17:09:25 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-18 21:24:29 +0100 |
commit | 16b411ee60fbe288475b933bae73eafdd1cde9fb (patch) | |
tree | 1f0149b56752ccaedc840631bc6c5f879e3253f1 | |
parent | 8b577306104638cf241be54e151b19fa93bbfd3e (diff) | |
download | poky-16b411ee60fbe288475b933bae73eafdd1cde9fb.tar.gz |
rpm-postinsts.bb: Fix typo
Fix a typo for stderr redirection.
(From OE-Core rev: cfe3bb097df2a9e6488b4d50f61311b97959ed26)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 | |||
36 | echo "Running postinst $i..." | 36 | echo "Running postinst $i..." |
37 | if [ -x $i ]; then | 37 | if [ -x $i ]; then |
38 | if [ "$POSTINST_LOGGING" = "1" ]; then | 38 | if [ "$POSTINST_LOGGING" = "1" ]; then |
39 | $i >>$LOGFILE 2&>1 | 39 | $i >>$LOGFILE 2>&1 |
40 | else | 40 | else |
41 | $i | 41 | $i |
42 | fi | 42 | fi |