Dear All,
Dumb question: if I create a patch against LLVM mainline using svn diff, what is the magic incantation of the patch command that will apply that patch to another unmodified LLVM tree.
Thanks in advance,
-- John T.
Dear All,
Dumb question: if I create a patch against LLVM mainline using svn diff, what is the magic incantation of the patch command that will apply that patch to another unmodified LLVM tree.
Thanks in advance,
-- John T.
Do you mean "patch"?
patch -p0 < mypatch.diff
If not, what are you trying to do that's different?
Hope this helps,
~Will
Do you mean "patch"?
patch -p0< mypatch.diff
If not, what are you trying to do that's different?
No, that's what I needed. I didn't realize I had to have the -p0.
Thanks.
-- John T.