21 Feb
2007
21 Feb
'07
11:35 p.m.
On 2/21/07, Giovanni Scafora <linuxmania@gmail.com> wrote:
2007/2/21, Dan McGee <dpmcgee@gmail.com>:
Applied. FYI: the reason I suggested using patches is so we can both save work- you can put both patches in the same file, the patch program works fine with that. simply tack one onto the end of the other.
So I will do the next time.
cat patch1.patch patch2.patch > it.po.patch
Yes, that will work great. You can also redirect the first diff as so: cvs diff src/pacman/po/it.po > it.po.patch and then do the second like this (note the double >), which will 'cat' the second diff onto the already existing first: cvs diff lib/libalpm/po/it.po >> it.po.patch -Dan