Browse Source

fixed postflist_static_lib to also copy sym-links (e.g. if they dead links)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1746 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
0a03aa2d7c
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +1
    -1
      scripts/functions

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -9,6 +9,7 @@
- Sebastian Jaenicke: updated opera, maildrop and ntp
fixed mplayer /dev/misc/rtc useage
- Andreas V. Meier: fixed nikolaus/unison to parse the uname output correctly
- fixed postflist_static_lib to also copy sym-links (e.g. if they dead links)
*) 2003-11-10 (2.0.0-rc2 - 2.0.0-rc3)

+ 1
- 1
scripts/functions

@ -276,7 +276,7 @@ postflist_static_lib() {
echo_status "processing static lib corrections ..."
egrep '^lib/.*\.(a|la)$' $builddir/flist.txt |
while read fn ; do
[ -f $root/$fn ] || continue
[ -e $root/$fn -o -L $root/$fn ] || continue
if [[ $fn = *.a ]] ; then
mv -fv $root/$fn $root/usr/$fn
else

Loading…
Cancel
Save