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=510fb29101d777812cb7e4d0c9c4f3ac16c825cf commit 510fb29101d777812cb7e4d0c9c4f3ac16c825cf Author: Guillem Jover <[email protected]> AuthorDate: Tue Sep 26 04:30:40 2023 +0200 test: Do not use -T for ln calls This option is not portable, and makes the ln command fail when it's not a GNU implementation. --- src/at/realpath.at | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/at/realpath.at b/src/at/realpath.at index a99d7b8be..40e371d3f 100644 --- a/src/at/realpath.at +++ b/src/at/realpath.at @@ -13,10 +13,10 @@ mkdir -p aa/bb/cc mkdir -p zz/yy/xx mkdir -p usr/bin AT_DATA([aa/bb/cc/file], []) -ln -sfT aa/bb/cc/file zz/yy/xx/symlink-rel -ln -sfT /aa/bb/cc/file zz/yy/xx/symlink-abs +ln -sf aa/bb/cc/file zz/yy/xx/symlink-rel +ln -sf /aa/bb/cc/file zz/yy/xx/symlink-abs AT_DATA([usr/bin/a-shell], []) -ln -sfT /usr/bin/a-shell usr/bin/sh +ln -sf /usr/bin/a-shell usr/bin/sh tmpdir="$(DPKG_CWD)" export DPKG_ROOT= -- Dpkg.Org's dpkg

