6bfa4a28aa
In an environment created by `hsh --initroot-only`: $ for i in /usr/lib/rpm/*; do rpm -qf --qf='%{name}: '"$i"'\n' "$i"; done | grep '^rpm:' rpm: /usr/lib/rpm/0ldconfig.filetrigger rpm: /usr/lib/rpm/GROUPS rpm: /usr/lib/rpm/find-package rpm: /usr/lib/rpm/functions rpm: /usr/lib/rpm/macros.d rpm: /usr/lib/rpm/pdeath_execute rpm: /usr/lib/rpm/platform rpm: /usr/lib/rpm/posttrans-filetriggers rpm: /usr/lib/rpm/postupdate rpm: /usr/lib/rpm/rpmd rpm: /usr/lib/rpm/rpmdb_loadcvt rpm: /usr/lib/rpm/rpme rpm: /usr/lib/rpm/rpmi rpm: /usr/lib/rpm/rpmk rpm: /usr/lib/rpm/rpmpopt-4.13.0.1 rpm: /usr/lib/rpm/rpmq rpm: /usr/lib/rpm/rpmu rpm: /usr/lib/rpm/rpmv The `scripts/functions` file is provided from the rpm project in real installations. Let's ensure scripts in this package use the functions file from this package.
21 lines
418 B
Bash
Executable File
21 lines
418 B
Bash
Executable File
#!/bin/sh -efu
|
|
|
|
. @RPMCONFIGDIR@/rpmb-functions
|
|
|
|
StaticReq()
|
|
{
|
|
local f="$1"; shift
|
|
[ -z "${f##*.a}" ] || return 0
|
|
|
|
local name="${RPM_SUBPACKAGE_NAME-}"
|
|
[ -n "$name" ] || name=$(rpmquery --qf '%{NAME}\n' -f -- "$f")
|
|
|
|
case "$name" in
|
|
glibc*) return 0 ;;
|
|
*-devel-static) echo glibc-devel-static ;;
|
|
*) Verbose "package $name has static library ${f#${RPM_BUILD_ROOT-}}" ;;
|
|
esac
|
|
}
|
|
|
|
ArgvFileAction StaticReq "$@"
|