diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2013-07-17 17:09:24 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-18 12:21:12 -0700 |
commit | b03c670d44b28c673393468bbe62919f3f8186de (patch) | |
tree | f372071a39099ea7df6d7eab5781aa26f39b37d0 /meta | |
parent | ad5a76f03d6fda289ff562c326c093d5fd72bc81 (diff) | |
download | openembedded-core-b03c670d44b28c673393468bbe62919f3f8186de.tar.gz openembedded-core-b03c670d44b28c673393468bbe62919f3f8186de.tar.bz2 openembedded-core-b03c670d44b28c673393468bbe62919f3f8186de.zip |
run-postinsts: 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')
-rwxr-xr-x | meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts | 2 |
1 files changed, 1 insertions, 1 deletions
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 |