This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=922a02feb8c42b92537d16d1cae6bdfd9d686efc commit 922a02feb8c42b92537d16d1cae6bdfd9d686efc Author: Guillem Jover <[email protected]> AuthorDate: Thu Aug 11 02:15:26 2022 +0200 test: Redirect dd stderr to /dev/null instead of using status=none argument The latter is not portable. Fixes test failures on AIX. --- src/at/deb-split.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/at/deb-split.at b/src/at/deb-split.at index 2bc3014a0..ae06d8154 100644 --- a/src/at/deb-split.at +++ b/src/at/deb-split.at @@ -17,7 +17,7 @@ AT_CHECK([ chmod -R u+w pkg-split # XXX: Some environments set SIGPIPE to ignore which we cannot reset, and 'yes' # does check print error conditions, so we ignore its error message here. -yes 2>/dev/null | dd of=pkg-split/data-file bs=1024 count=2048 status=none +yes 2>/dev/null | dd of=pkg-split/data-file bs=1024 count=2048 2>/dev/null find pkg-split | xargs touch -t 197001010100.00 dpkg-deb --root-owner-group -Znone -b pkg-split >/dev/null ]) -- Dpkg.Org's dpkg

