brp-cleanup: remove lib*.la files from /lib, /usr/lib, and /usr/X11R6/lib

This commit is contained in:
Дмитрий Левин 2003-11-25 13:50:49 +00:00
parent f619b6e9ec
commit 04d9f8a8f3
2 changed files with 10 additions and 3 deletions

View File

@ -6,7 +6,7 @@
Name: %rpm_name
Version: %rpm_version
Release: alt27.2
Release: alt27.3
%define ifdef() %if %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
%define get_dep() %(rpm -q --qf '%%{NAME} >= %%|SERIAL?{%%{SERIAL}:}|%%{VERSION}-%%{RELEASE}' %1 2>/dev/null || echo '%1 >= unknown')
@ -474,7 +474,7 @@ fi
%endif #with contrib
%changelog
* Mon Nov 24 2003 Dmitry V. Levin <ldv@altlinux.org> 4.0.4-alt27.2
* Mon Nov 24 2003 Dmitry V. Levin <ldv@altlinux.org> 4.0.4-alt27.3
- brp-verify_elf:
"%%set_verify_elf_method relaxed" now affects textrel as well as rpath.
- verify-elf:
@ -483,6 +483,7 @@ fi
- platform: corrected %%%__python_version definition (#3311).
- Fixed Makefiles to correct librpm*-4.0.4.so dependencies.
- Do not package .la files.
- brp-cleanup: remove lib*.la files from /lib, /usr/lib, and /usr/X11R6/lib.
* Sun Nov 09 2003 Dmitry V. Levin <ldv@altlinux.org> 4.0.4-alt27
- helper shell scripts:

View File

@ -65,7 +65,7 @@ find .$RPM_CLEANUP_TOPDIR -type d -name CVS -print0 |
if cd ./etc/pam.d >/dev/null 2>&1; then
find -type f -mindepth 1 -maxdepth 1 -print0 |
xargs -r0 subst -p '
xargs -r0 subst -p '
s,^\(#\?\)auth[[:space:]]\+,\1auth ,g
s,^\(#\?\)account[[:space:]]\+,\1account ,g
s,^\(#\?\)password[[:space:]]\+,\1password ,g
@ -75,6 +75,12 @@ s,\([[:space:]]\)required[[:space:]]\+pam_stack.so[[:space:]]\+service=,\1includ
' --
fi
for d in /lib /usr/lib /usr/X11R6/lib; do
[ -d "$d" ] || continue
find "$d" -type f -mindepth 1 -maxdepth 1 -name 'lib*.la' -print0 |
xargs -r0 rm -fv --
done
# All the rest is perl cleanup stuff.
cd ./usr/lib/perl5 >/dev/null 2>&1 || exit 0