You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stanbol.apache.org by Danny Ayers <da...@gmail.com> on 2013/03/30 09:11:44 UTC

patch v3

Not sure what the problem with the previous patch was, but I've attached
another to
https://issues.apache.org/jira/browse/STANBOL-897

called patch_2013-03-30.txt

which I just generated using:

stanbol$ svn diff ./commons/security/usermanagement > patch_2013-03-30.txt

I just tried applying this to a local copy of stanbol from svn, freshly
updated, with -

stanbol$ patch -p0 --verbose ./../../stanbol/patch_2013-03-30.txt

but for me this just hangs (not sure I've used patch on this machine
before).

Am I missing something?

Cheers,
Danny.


-- 
http://dannyayers.com

http://webbeep.it  - text to tones and back again

Re: patch v3

Posted by Reto Bachmann-Gmür <re...@apache.org>.
On Sat, Mar 30, 2013 at 9:11 AM, Danny Ayers <da...@gmail.com> wrote:
> Not sure what the problem with the previous patch was, but I've attached
> another to
> https://issues.apache.org/jira/browse/STANBOL-897
>
> called patch_2013-03-30.txt
>
> which I just generated using:
>
> stanbol$ svn diff ./commons/security/usermanagement > patch_2013-03-30.txt
>
> I just tried applying this to a local copy of stanbol from svn, freshly
> updated, with -
>
> stanbol$ patch -p0 --verbose ./../../stanbol/patch_2013-03-30.txt
>
> but for me this just hangs (not sure I've used patch on this machine
> before).
>
> Am I missing something?

You are missing a < before the path to your patch.

$ patch -p0 --verbose < ./../../stanbol/patch_2013-03-30.txt

And then it's not going to work because of the wrong directory you're
applying it in.


Cheers,
Reto