Source: golang-github-containers-toolbox Version: 0.0.99.3+git20230118+446d7bfdef6a-2.1 Followup-For: Bug #1060883 X-Debbugs-Cc: wuruil...@loongson.cn
Dear Maintainer, Modify attached patches based on upstream code review. please merge the latest submitted attached patches. wuruilong
Description: <short summary of the patch> TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . golang-github-containers-toolbox (0.0.99.3+git20230118+446d7bfdef6a-2.1) unstable; urgency=medium . * Non-maintainer upload. * Replace systemd Build-Depends with systemd-dev for systemd.pc. (Closes: #1065386) Author: Michael Biebl <bi...@debian.org> Bug-Debian: https://bugs.debian.org/1065386 --- The information above should follow the Patch Tagging Guidelines, please checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>) Bug: <upstream-bugtracker-url> Bug-Debian: https://bugs.debian.org/<bugnumber> Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber> Forwarded: (no|not-needed|<patch-forwarded-url>) Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>) Reviewed-By: <name and email of someone who approved/reviewed the patch> Last-Update: 2024-09-29 --- golang-github-containers-toolbox-0.0.99.3+git20230118+446d7bfdef6a.orig/src/meson.build +++ golang-github-containers-toolbox-0.0.99.3+git20230118+446d7bfdef6a/src/meson.build @@ -43,6 +43,8 @@ elif cpu_family == 'x86_64' and endian = dynamic_linker = '/lib64/ld-linux-x86-64.so.2' elif cpu_family == 'riscv64' and endian == 'little' dynamic_linker = '/lib/ld-linux-riscv64-lp64d.so.1' +elif cpu_family == 'loongarch64' and endian == 'little' + dynamic_linker = '/lib64/ld-linux-riscv64-lp64d.so.1' else host_machine_description = cpu_family + ' (' + endian + ' endian)' error('Please specify dynamic linker for:', host_machine_description)