mk-sbuild: don't require pkg-config-$target_tuple

Packages pkg-config-$target_tuple are no longer built by from source
package gcc-defaults-ports. Install pkg-config instead (LP: #1966881).
This commit is contained in:
Matthias Klose 2022-03-30 15:37:08 +02:00
parent b2d259b415
commit 87858a4387
2 changed files with 4 additions and 3 deletions

5
debian/changelog vendored
View File

@ -1,8 +1,9 @@
ubuntu-dev-tools (0.189) UNRELEASED; urgency=medium ubuntu-dev-tools (0.189) UNRELEASED; urgency=medium
* WIP. [ Heinrich Schuchardt ]
* mk-sbuild: don't require pkg-config-<target>. LP: #1966881.
-- Mattia Rizzolo <mattia@debian.org> Mon, 07 Feb 2022 16:31:53 +0100 -- Matthias Klose <doko@debian.org> Wed, 30 Mar 2022 15:36:04 +0200
ubuntu-dev-tools (0.188) unstable; urgency=medium ubuntu-dev-tools (0.188) unstable; urgency=medium

View File

@ -691,7 +691,7 @@ if [ -n "$TARGET_ARCH" ]; then
echo "Unknown target architecture $TARGET_ARCH" >&2 echo "Unknown target architecture $TARGET_ARCH" >&2
exit 1 exit 1
fi fi
BUILD_PKGS="$BUILD_PKGS g++-$target_tuple pkg-config-$target_tuple dpkg-cross libc-dev:$TARGET_ARCH" BUILD_PKGS="$BUILD_PKGS g++-$target_tuple pkg-config dpkg-cross libc-dev:$TARGET_ARCH"
fi fi
debootstrap_opts="--components=$(echo $COMPONENTS | tr ' ' ,)" debootstrap_opts="--components=$(echo $COMPONENTS | tr ' ' ,)"