/usr/lib/rpm
NameSizeModeActions
fileattrs/-0755rm
macros.d/-0755rm
platform/-0755rm
redhat/-0755rm
brp-compress15020755editdlrm
brp-java-gcjcompile14180755editdlrm
brp-python-bytecompile38680755editdlrm
brp-python-hardlink6320755editdlrm
brp-scl-compress18090755editdlrm
brp-scl-python-bytecompile31090755editdlrm
brp-strip4280755editdlrm
brp-strip-comment-note7410755editdlrm
brp-strip-shared7060755editdlrm
brp-strip-static-archive4940755editdlrm
check-buildroot12850755editdlrm
check-files10430755editdlrm
check-prereqs4180755editdlrm
check-rpaths10390755editdlrm
check-rpaths-worker50550755editdlrm
config.guess441660755editdlrm
config.sub364080755editdlrm
debugedit476880755editdlrm
debuginfo.prov3750755editdlrm
desktop-file.prov6020755editdlrm
elfdeps167680755editdlrm
find-debuginfo.sh200540755editdlrm
find-lang.sh82350755editdlrm
find-provides910755editdlrm
find-requires910755editdlrm
fontconfig.prov4890755editdlrm
kabi.sh4680755editdlrm
kmod.prov6820755editdlrm
libtooldeps.sh7180755editdlrm
macros439880644editdlrm
macros.perl4730644editdlrm
macros.php1920644editdlrm
macros.python9060644editdlrm
metainfo.prov4380755editdlrm
mkinstalldirs35390755editdlrm
mono-find-provides11070755editdlrm
mono-find-requires19160755editdlrm
ocaml-find-provides.sh16590755editdlrm
ocaml-find-requires.sh21350755editdlrm
pkgconfigdeps.sh13710755editdlrm
python-macro-helper6340644editdlrm
pythondeps.sh9210755editdlrm
pythondistdeps.py111840755editdlrm
rpm.daily2960644editdlrm
rpm.log610644editdlrm
rpm.supp6880644editdlrm
rpm2cpio.sh12490755editdlrm
rpmdb_dump169040755editdlrm
rpmdb_load292960755editdlrm
rpmdb_loadcvt14670755editdlrm
rpmdb_recover169040755editdlrm
rpmdb_stat168720755editdlrm
rpmdb_upgrade127520755editdlrm
rpmdb_verify168560755editdlrm
rpmdeps173440755editdlrm
rpmpopt-4.14.3114700644editdlrm
rpmrc171540644editdlrm
scldeps.sh2540755editdlrm
script.req3220755editdlrm
sepdebugcrcfix162320755editdlrm
tgpg9290755editdlrm
Edit: /usr/lib/rpm/check-files (1043B)
#!/bin/sh # # Gets file list on standard input and RPM_BUILD_ROOT as first parameter # and searches for omitted files (not counting directories). # Returns it's output on standard output. # # filon@pld.org.pl # Get build root RPM_BUILD_ROOT="${1}" # Handle the case where ${RPM_BUILD_ROOT} is undefined, not a directory, etc. if [ ! -d "${RPM_BUILD_ROOT}" ] ; then cat > /dev/null if [ -e "${RPM_BUILD_ROOT}" ] ; then echo "Error: \`${RPM_BUILD_ROOT}' is not a directory" 1>&2 fi exit 1 fi # Create temporary file listing files in the manifest [ -n "$TMPDIR" ] || TMPDIR="/tmp" FILES_DISK=`mktemp "${TMPDIR}/rpmXXXXXX"` # Ensure temporary file is cleaned up when we exit trap "rm -f \"${FILES_DISK}\"" 0 2 3 5 10 13 15 # Find non-directory files in the build root and compare to the manifest. # TODO: regex chars in last sed(1) expression should be escaped find "${RPM_BUILD_ROOT}" -type f -o -type l | LC_ALL=C sort > "${FILES_DISK}" LC_ALL=C sort | diff -d "${FILES_DISK}" - | sed -n 's|^< '"${RPM_BUILD_ROOT}"'\(.*\)$| \1|gp'