Hi
I'm trying to patch the latest xine-lib sources supplied on http://home.vrweb.de/rnissl/
I see the patching mechanism has been changed in this version - and I now get this error:
[root@freddy development]# ls xine-lib AUTHORS ChangeLog COPYING CREDITS doc lib Makefile.am NEWS README TODO autogen.sh configure.ac COPYING.LIB debian include m4 misc po src win32 [root@freddy development]# patch -d. -p0 --dry-run < ~/vdr-1.7.4/PLUGINS/src/xine/patches/xine-lib.patch can't find file to patch at input line 4 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/configure.ac b/configure.ac |--- a/configure.ac |+++ b/configure.ac -------------------------- File to patch: ^C
It was: diff -Nurp ../xine-cvs/xine-lib/configure.ac xine-lib/configure.ac --- ../xine-cvs/xine-lib/configure.ac 2008-03-06 20:06:29.000000000 +0100 +++ xine-lib/configure.ac 2008-03-10 21:05:50.000000000 +0100 <etc>
now it's: diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac
Has the desired mechanism changed, and the INSTALL file not been updated??
Thanks Simon
can't find file to patch at input line 4 Perhaps you used the wrong -p or --strip option? The text leading up to this was:
patch -p1 ...
(man patch)
My point exactly - from INSTALL: <snip> keybindings to xine-ui for supporting my plugin's remote functionality. I use the following commands for patching:
patch -d. -p0 < /soft/src/VDR/PLUGINS/src/xine/patches/xine-lib.patch <snip>
Hi,
Simon Baxter schrieb:
My point exactly - from INSTALL:
<snip> keybindings to xine-ui for supporting my plugin's remote functionality. I use the following commands for patching:
patch -d. -p0 < /soft/src/VDR/PLUGINS/src/xine/patches/xine-lib.patch
<snip>
I'm sorry Simon, this one slipped through. I had created the patch differently (and much easier) this time and it therefore contains a different toplevel directory.
I've changed INSTALL meanwhile to:
patch -dxine-lib -p1 < /soft/src/VDR/PLUGINS/src/xine/patches/xine-lib.patch
Hope this works, too.
Bye.