I downloaded the patch and made:
But if I do this:
patch -p1 < ../path.to.the/patch
I just get:Once this is complete, execute the following command:
find . -name "*.rej" -print
Any ideas?find: ./.maildir/.Junk: Permission denied
But if I do this:
patch -p1 < ../path.to.the/patch
I just get:Once this is complete, execute the following command:
find . -name "*.rej" -print
Any ideas?find: ./.maildir/.Junk: Permission denied
Mogour wrote:I tried to patch the eggdrop to the new version (from 1.6.18. to 1.6.19)
I downloaded the patch and made:
But if I do this:
patch -p1 < ../path.to.the/patch
I just get:Once this is complete, execute the following command:
find . -name "*.rej" -print
Any ideas?find: ./.maildir/.Junk: Permission denied
Fairly easy to figure out, since you didn't get any .rej files the patch worked.Once this is complete, execute the following command:
find . -name "*.rej" -print
If it returns a list with filenames ending with .rej extension, then the patch didn't apply properly. Ensure that the patch is intended for your version and that you have the original source. You should also try to re-download the patch to ensure that the patch is not corrupted.
Code: Select all
patch -p0 < ../path.to.the/patch
mv eggdrop1.6.18 eggdrop1.6.19Mogour wrote: Can I rename the folder eggdrop1.6.18 to eggdrop1.6.19 or will this cause any problems?