RPM Package Manager, CVS Repository
/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Jeff Johnson
Root: /v/rpm/cvs Email: jbj@rpm5.org
Module: rpm Date: 13-Aug-2010 16:15:53
Branch: rpm-5_3 Handle: 2010081314154902
Modified files: (Branch: rpm-5_3)
rpm CHANGES
rpm/scripts find-debuginfo.sh
Log:
- jbj: fix: debugedit produce empty list file on MIPS.
Summary:
Revision Changes Path
1.3296.2.51 +3 -0 rpm/CHANGES
1.13.2.1 +1 -1 rpm/scripts/find-debuginfo.sh
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/CHANGES
============================================================================
$ cvs diff -u -r1.3296.2.50 -r1.3296.2.51 CHANGES
--- rpm/CHANGES 25 Jun 2010 18:40:26 -0000 1.3296.2.50
+++ rpm/CHANGES 13 Aug 2010 14:15:49 -0000 1.3296.2.51
@@ -1,3 +1,6 @@
+5.3.2 -> 5.3.3:
+ - jbj: fix: debugedit produce empty list file on MIPS.
+
5.3.1 -> 5.3.2:
- jbj: pgp: fix: algo parameters to signature/pubkey with msbits().
- jbj: pgp: use the pubkey from header when installing.
@@ .
patch -p0 <<'@@ .'
Index: rpm/scripts/find-debuginfo.sh
============================================================================
$ cvs diff -u -r1.13 -r1.13.2.1 find-debuginfo.sh
--- rpm/scripts/find-debuginfo.sh 10 Sep 2009 01:52:13 -0000 1.13
+++ rpm/scripts/find-debuginfo.sh 13 Aug 2010 14:15:51 -0000 1.13.2.1
@@ -191,7 +191,7 @@
link=$debugfn
get_debugfn "$linked"
echo "hard linked $link to $debugfn"
- ln -nf "$debugfn" "$link"
+ mkdir -p "$(dirname "$link")" && ln -nf "$debugfn" "$link"
continue
else
eval linked_$inum=\$f
@@ .
Received on Fri Aug 13 16:15:54 2010