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=de5fe0a6c1913b98f028a1ea832adba7b680a156 commit de5fe0a6c1913b98f028a1ea832adba7b680a156 Author: Guillem Jover <[email protected]> AuthorDate: Fri Nov 25 03:23:30 2022 +0100 test: Fix typo in DPKG_GEN_FSYS_LINK m4 macro The link-name had a colon which meant it would not get replaced by its m4 macro. --- src/at/local.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/at/local.at b/src/at/local.at index 283b3b687..04628a165 100644 --- a/src/at/local.at +++ b/src/at/local.at @@ -58,7 +58,7 @@ m4_define([DPKG_GEN_FSYS_FILE], [ # DPKG_GEN_FSYS_LINK([$pathname], [$target]) m4_define([DPKG_GEN_FSYS_LINK], [ - ln "DPKG_INSTDIR/$1" "DPKG:INSTDIR/$2" + ln "DPKG_INSTDIR/$1" "DPKG_INSTDIR/$2" ]) # DPKG_CHECK_FSYS_PATH_EXISTS([$pathname]) -- Dpkg.Org's dpkg

