/usr/libexec
NameSizeModeActions
awk/-0755rm
bluetooth/-0755rm
coreutils/-0755rm
cpanel-pdns/-0755rm
dovecot/-0755rm
dpkg/-0755rm
fwupd/-0755rm
gawk/-0755rm
gcc/-0755rm
geoclue-2.0/-0755rm
getconf/-0755rm
grub2/-0755rm
grubby/-0755rm
gstreamer-1.0/-0755rm
hostname/-0755rm
imunify-notifier/-0755rm
initscripts/-0755rm
installkernel/-0755rm
irqbalance/-0755rm
linux-boot-probes/-0755rm
man-db/-0755rm
microcode_ctl/-0755rm
nfs-utils/-0755rm
openldap/-0755rm
openssh/-0755rm
os-prober/-0755rm
os-probes/-0755rm
p11-kit/-0755rm
rsyslog/-0755rm
selinux/-0755rm
smartmontools/-0755rm
sssd/-0755rm
sudo/-0755rm
totem-pl-parser/-0755rm
tracker3/-0755rm
utempter/-0755rm
arptables-helper13040755editdlrm
arptables-nft-helper13040755editdlrm
at-spi-bus-launcher328880755editdlrm
at-spi2-registryd833360755editdlrm
dconf-service788560755editdlrm
dirmngr_ldap409920755editdlrm
dnf-utils36900755editdlrm
exim.daemon7610755editdlrm
fips-setup-helper3330755editdlrm
flatpak-oci-authenticator12700160755editdlrm
flatpak-portal13869520755editdlrm
flatpak-session-helper1753920755editdlrm
flatpak-system-helper13031200755editdlrm
flatpak-validate-icon158240755editdlrm
generate-rndc-key.sh6810755editdlrm
geoclue2465440755editdlrm
glib-pacrunner245760755editdlrm
gpg-check-pattern613440755editdlrm
gpg-pair-tool660240755editdlrm
gpg-preset-passphrase366000755editdlrm
gpg-protect-tool867120755editdlrm
gpg-wks-client500755editdlrm
grepconf.sh2570755editdlrm
import-state10620755editdlrm
imunify-message-gateway83410720755editdlrm
keyboxd1620400755editdlrm
loadmodules2370755editdlrm
low-memory-monitor290080755editdlrm
lvresize_fs_helper121780755editdlrm
nfsrahead279840755editdlrm
nm-daemon-helper157200755editdlrm
nm-dhcp-helper196960755editdlrm
nm-dispatcher784400755editdlrm
nm-ifdown10970755editdlrm
nm-ifup10660755editdlrm
nm-initrd-generator7986800755editdlrm
nm-libnm-helper156640755editdlrm
nm-priv-helper408720755editdlrm
platform-python154480755editdlrm
platform-python-config610755editdlrm
platform-python3.9154480755editdlrm
platform-python3.9-config610755editdlrm
platform-python3.9-x86_64-config36240755editdlrm
report-command-error88050080755editdlrm
revokefs-fuse330400755editdlrm
rtkit-daemon696480755editdlrm
run-with-intensity66739040755editdlrm
scdaemon4375920755editdlrm
tracker-extract-31363680755editdlrm
tracker-miner-fs-31530560755editdlrm
tracker-miner-fs-control-3738960755editdlrm
tracker-writeback-3447600755editdlrm
tracker-xdg-portal-3406400755editdlrm
upowerd2460400755editdlrm
xdg-desktop-portal7428320755editdlrm
xdg-desktop-portal-gtk3412960755editdlrm
xdg-document-portal2078000755editdlrm
xdg-permission-store867360755editdlrm
Edit: /usr/bin/python3.9-x86_64-config (3624B)
#!/usr/bin/sh # Keep this script in sync with python-config.in exit_with_usage () { echo "Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed" exit $1 } if [ "$1" = "" ] ; then exit_with_usage 1 fi # Returns the actual prefix where this script was installed to. installed_prefix () { RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) if which readlink >/dev/null 2>&1 ; then if readlink -f "$RESULT" >/dev/null 2>&1; then RESULT=$(readlink -f "$RESULT") fi fi echo $RESULT } prefix_real=$(installed_prefix "$0") # Use sed to fix paths from their built-to locations to their installed-to # locations. Keep prefix & exec_prefix using their original values in case # they are referenced in other configure variables, to prevent double # substitution, issue #22140. prefix="/usr" exec_prefix="/usr" exec_prefix_real=${prefix_real} includedir=$(echo "/usr/include" | sed "s#$prefix#$prefix_real#") libdir=$(echo "/usr/lib64" | sed "s#$prefix#$prefix_real#") CFLAGS=$(echo " -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv " | sed "s#$prefix#$prefix_real#") VERSION="3.9" LIBM="-lm" LIBC="" SYSLIBS="$LIBM $LIBC" ABIFLAGS="" LIBS=" -lcrypt -ldl -lm $SYSLIBS" LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} -lcrypt -ldl -lm $SYSLIBS" BASECFLAGS=" -Wno-unused-result -Wsign-compare" LDLIBRARY="libpython${LDVERSION}.so" OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv" PY_ENABLE_SHARED="1" LDVERSION="${VERSION}${ABIFLAGS}" LIBDEST=${prefix_real}/lib/python${VERSION} LIBPL=$(echo "${prefix}/lib64/python3.9/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") SO=".cpython-39-x86_64-linux-gnu.so" PYTHONFRAMEWORK="" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PY_EMBED=0 # Scan for --help or unknown argument. for ARG in $* do case $ARG in --help) exit_with_usage 0 ;; --embed) PY_EMBED=1 ;; --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) ;; *) exit_with_usage 1 ;; esac done if [ $PY_EMBED = 1 ] ; then LIBS="$LIBS_EMBED" fi for ARG in "$@" do case "$ARG" in --prefix) echo "$prefix_real" ;; --exec-prefix) echo "$exec_prefix_real" ;; --includes) echo "$INCDIR $PLATINCDIR" ;; --cflags) echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" ;; --libs) echo "$LIBS" ;; --ldflags) LIBPLUSED= if [ "$PY_ENABLE_SHARED" = "0" ] ; then LIBPLUSED="-L$LIBPL" fi echo "$LIBPLUSED -L$libdir $LIBS" ;; --extension-suffix) echo "$SO" ;; --abiflags) echo "$ABIFLAGS" ;; --configdir) echo "$LIBPL" ;; esac done