aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2013-07-17 17:09:24 +0800
committerSaul Wold <sgw@linux.intel.com>2013-07-18 12:21:12 -0700
commitb03c670d44b28c673393468bbe62919f3f8186de (patch)
treef372071a39099ea7df6d7eab5781aa26f39b37d0
parentad5a76f03d6fda289ff562c326c093d5fd72bc81 (diff)
downloadopenembedded-core-contrib-b03c670d44b28c673393468bbe62919f3f8186de.tar.gz
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>
-rwxr-xr-xmeta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts2
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