Thanks. I’ll like to try out, but I am not sure how this works. Do I need to recompile grass gis? But how to incorporate the pull request? Sorry, not very familiar with the procedure?
Best regards,
Paulo
On Mon, Jun 22, 2020 at 3:35 PM Markus Neteler <neteler@osgeo.org> wrote:
On Mon, Jun 22, 2020 at 4:19 PM Paulo van Breugel
<p.vanbreugel@gmail.com> wrote:
Hi Markus,
Thanks. I'll like to try out, but I am not sure how this works. Do I need to recompile grass gis? But how to incorporate the pull request? Sorry, not very familiar with the procedure?
That's pretty easy:
# go to wherever your local source code copy is:
cd grass78_git_src/
# check for the change
git status
# ... this should show: `modified: vector/v.surf.bspline/main.c`
# compile it
cd vector/v.surf.bspline/
make
# ONLY in case you always do `make install`
# (e.g. I don't since I use it directly from `bin.x86_64-pc-linux-gnu/grass78`)
cd ../../
sudo make install
# to revert the local change (needed after merge of PR, to be able to
locally update):
git apply 727.diff --reverse