PKG_NAME = build-essentials
PKG_VER = $(DISTRO_VERSION)
-PKG_REL = 14
+PKG_REL = 15
PKG_EPOCH = 1
PKG_ARCH = noarch
for dir in ${dirs}; do
dir="${prefix}${dir}"
for file in $(find ${dir} -type f 2>/dev/null); do
- if file_is_elf ${file} && file_is_shared_object ${file} && ! file_is_static ${file}; then
+ if file_is_elf ${file} && ! file_is_static ${file}; then
files="${files} ${file}"
fi
done
continue
fi
+ # Skip all files that are not a shared object.
+ file_is_shared_object ${file} || continue
+
if ! file_is_relro_full ${file}; then
if [ "${QUALITY_AGENT_PERMIT_NOT_FULL_RELRO}" = "yes" ]; then
log_warning " Is not full relro: ${file}"