PDA

View Full Version : [Test] 12/14 patch



cn187
12-14-2020, 09:14 PM
Updated opcodes and structs for Test.

Patch applies to the pre_6_0_beta branch and the RC3 tarball.



patch -p0 < /path/to/patch/file.txt

Nstalkerga
12-15-2020, 12:16 PM
I've actually struggled with the patch command on and off ... Not sure if it i just play with too many distros and confuse them .. or if its something else

in a standard centos install

download the src to
/root/showeq/showeq/branches/pre_6_0_beta

Copy the patch file directly down to that same directory
name : 2020-12-14_test_seq6.txt

I was thinking everything was applied from that root directory
so
patch -p0 ./2020-12-14_test_seq6.txt

Which just hangs for me there :)

Forgive me if, it been years now since i messed with it, trying to get back up to speed.

cn187
12-15-2020, 02:59 PM
You're missing the < to redirect the file contents into patch's stdin.

You want



patch -p0 < ./2020-12-14_test_seq6.txt

Nstalkerga
12-16-2020, 07:20 AM
blast it ... i completely glossed over that looking for something more complicated :)

and thanks