mirror of
https://git.yoctoproject.org/poky
synced 2026-06-05 02:20:12 +00:00
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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user