Jan Kiska wrote: > Just a hint on the preferred patch format: either generate a > diff of individual modified files by invoking "diff -up file > file.orig >> my.patch" or
Just to be picky, the original file is the 1st argument, and the modified file the 2nd one: diff ... file.orig file And traditionally, people rather use the "normalized" diff format. This is the one recommended in the patch(1) manpage. I personally like the following diff options: diff -Naurd file.orig file Mnemotechnic tip: Naurd == Nerd ;-) -- Romain LENGLET _______________________________________________ Xenomai-help mailing list [email protected] https://mail.gna.org/listinfo/xenomai-help
