/usr/share
NameSizeModeActions
aclocal/-0755rm
aclocal-1.16/-0755rm
adduser/-0755rm
apache2/-0755rm
applications/-0755rm
apport/-0755rm
augeas/-0755rm
autoconf/-0755rm
automake-1.16/-0755rm
awk/-0755rm
base-files/-0755rm
base-passwd/-0755rm
bash-completion/-0755rm
binfmts/-0755rm
boost-build/-0755rm
boostbook/-0755rm
bug/-0755rm
build-essential/-0755rm
byobu/-0755rm
ca-certificates/-0755rm
cmake/-0755rm
color/-0755rm
common-licenses/-0755rm
console-setup/-0755rm
consolefonts/-0755rm
consoletrans/-0755rm
cryptsetup/-0755rm
dbconfig-common/-0755rm
dbus-1/-0755rm
debconf/-0755rm
debianutils/-0755rm
dict/-0755rm
distro-info/-0755rm
doc/-0755rm
doc-base/-0755rm
dpkg/-0755rm
emacs/-0755rm
file/-0755rm
finalrd/-0755rm
fish/-0755rm
fontconfig/-0755rm
fonts/-0755rm
fonts-droid-fallback/-0755rm
fwupd/-0755rm
gcc/-0755rm
gdb/-0755rm
gettext/-0755rm
ghostscript/-0755rm
git-core/-0755rm
gitweb/-0755rm
glib-2.0/-0755rm
gnupg/-0755rm
groff/-0755rm
grub/-0755rm
grub-gfxpayload-lists/-0755rm
guile/-0755rm
i18n/-0755rm
icons/-0755rm
icu/-0755rm
ImageMagick-6/-0755rm
info/-0755rm
initramfs-tools/-0755rm
iptables/-0755rm
iso-codes/-0755rm
java/-0755rm
javascript/-0755rm
keyrings/-0755rm
landscape/-0755rm
libc-bin/-0755rm
libdbi-perl/-0755rm
libdrm/-0755rm
libtool/-0755rm
lintian/-0755rm
locale/-0755rm
locales/-0755rm
lto-disabled-list/-0755rm
lua/-0755rm
lua5.2/-0755rm
man/-0755rm
man-db/-0755rm
maven-repo/-0755rm
mc/-0755rm
mdadm/-0755rm
mecab/-0755rm
menu/-0755rm
metainfo/-0755rm
mime/-0755rm
misc/-0755rm
ModemManager/-0755rm
mpi-default-dev/-0755rm
mysql/-0755rm
mysql-common/-0755rm
nano/-0755rm
needrestart/-0755rm
netplan/-0755rm
nginx/-0755rm
nodejs/-0755rm
open-vm-tools/-0755rm
openmpi/-0755rm
openssh/-0755rm
os-prober/-0755rm
package-data-downloads/-0755rm
PackageKit/-0755rm
pam/-0755rm
pam-configs/-0755rm
pastebin.d/-0755rm
perl/-0755rm
perl-openssl-defaults/-0755rm
perl5/-0755rm
php/-0755rm
php8.1-common/-0755rm
php8.1-opcache/-0755rm
php8.1-readline/-0755rm
php8.3-common/-0755rm
php8.3-curl/-0755rm
php8.3-mbstring/-0755rm
php8.3-mysql/-0755rm
php8.3-opcache/-0755rm
php8.3-readline/-0755rm
php8.3-sqlite3/-0755rm
php8.3-xml/-0755rm
php8.4-bz2/-0755rm
php8.4-common/-0755rm
php8.4-gd/-0755rm
php8.4-mysql/-0755rm
php8.4-xml/-0755rm
php8.4-zip/-0755rm
php8.5-common/-0755rm
php8.5-gd/-0755rm
php8.5-mysql/-0755rm
php8.5-readline/-0755rm
php8.5-xml/-0755rm
phpmyadmin/-0755rm
pixmaps/-0755rm
pkg-php-tools/-0755rm
pkgconfig/-0755rm
plymouth/-0755rm
polkit-1/-0755rm
poppler/-0755rm
postfix/-0755rm
postgresql/-0755rm
postgresql-common/-0755rm
publicsuffix/-0755rm
pyshared/-0755rm
python-apt/-0755rm
python-babel-localedata/-0755rm
python3/-0755rm
readline/-0755rm
rsync/-0755rm
rsyslog/-0755rm
sass/-0755rm
screen/-0755rm
secureboot/-0755rm
sensible-utils/-0755rm
snapd/-0755rm
ssl-cert/-0755rm
systemd/-0755rm
tabset/-0755rm
tcltk/-0755rm
terminfo/-0755rm
ubuntu-release-upgrader/-0755rm
ucf/-0755rm
ufw/-0755rm
unattended-upgrades/-0755rm
update-notifier/-0755rm
usb_modeswitch/-0755rm
usermin/-0755rm
vim/-0755rm
X11/-0755rm
xml/-0755rm
zoneinfo/-0755rm
zoneinfo-icu/-0755rm
zsh/-0755rm
pkg-config-crosswrapper22350755editdlrm
pkg-config-dpkghook18260755editdlrm
Edit: /usr/share/pkg-config-dpkghook (1826B)
#! /usr/bin/perl # # Sets up /usr/bin/*-pkg-config symlinks to point to the cross wrapper. # # It is called from dpkg --post-invoke and from postinst with the "update" # argument to instate the necessary symlinks. # # It is called from prerm with the "remove" argument to remove all symlinks. # use strict; use warnings; use Dpkg::Arch qw(debarch_to_gnutriplet); use Dpkg::ErrorHandling qw(error warning); my $crosswrapper = "/usr/share/pkg-config-crosswrapper"; my $action = $ARGV[0]; error("parameter must be 'remove' or 'update'") unless defined $action && ($action eq "remove" || $action eq "update"); my $arch = `dpkg --print-architecture`; error('dpkg --print-architecture failed') if $? >> 8; my @architectures = `dpkg --print-foreign-architectures`; error('dpkg --print-foreign-architectures failed') if $? >> 8; push @architectures, $arch; chomp @architectures; my %gnutriplets; foreach my $arch (@architectures) { my $triplet = debarch_to_gnutriplet($arch); if (not defined($triplet)) { warning("Architecture $arch not defined in architecture tables, ignored"); next; } $gnutriplets{$triplet} = 1; } my %symlinks = map { $_ => 1 } ; foreach my $symlink (keys %symlinks) { $symlink =~ m,^/usr/bin/([^-]+-[^-]+-[^-]+)-pkg-config, or next; next if exists $gnutriplets{$1} && $action eq "update"; next unless -l $symlink; next unless readlink $symlink eq $crosswrapper; unlink $symlink or error("failed to remove symlink $symlink: $!"); } if ($action eq 'update') { foreach (keys %gnutriplets) { my $linktarget = "/usr/bin/${_}-pkg-config"; next if exists $symlinks{$linktarget}; next if -e $linktarget; symlink $crosswrapper, $linktarget or error("failed to create symlink $linktarget to $crosswrapper: $!"); } }