File: foreign-arch

package info (click to toggle)
pkg-config 0.29.2-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 12,548 kB
  • sloc: ansic: 131,584; sh: 5,490; perl: 1,113; makefile: 643; python: 461
file content (12 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

dpkg --add-architecture i386

if [ ! -x /usr/bin/i686-linux-gnu-pkg-config ]; then
    echo "cross symlink missing"
    echo "pkg-config symlinks found: $(find /usr/bin/ -name \*pkg-config)"
    exit 1
fi
exit 0