May 05, 2004

Chase's Words of patch Wisdom

If you have a patch that is created with:

   sh$ diff -Nur [old-src-dir] [new-src-dir] > my-patch

you apply that patch by typing:

   sh$ ls my-patch
   my-patch
   sh$ cd [src-dir]/
   sh$ patch -p1 < ../my-patch

--- Short and sweet
Posted by csev at May 5, 2004 09:53 PM