Fwd message from a colleague of mine who takes care of our
linux-systems. This seems to be unusual behaviour:
When compiling from svn, the command sequence
make
sudo make install
installs GRASS to /usr/local, but everything is owned by the user
who executed make. Is this desired behavior, or a bug?
A long-standing bug. You can safely "chown -R root:root..."
everything.
The GRASS build process installs everything to a staging directory as
it goes. "make install" just copies the staging directory to the final
location using "tar c ... | tar x ...". Using the "-o" flag when
extracting would prevent the ownership from being preserved when run
by root, but I don't know whether this is portable.
I am trying to update a column in my vector point layer with a raster
value. I have tried v.what.rast. The problem is the number of points I
have are rather large (over 3M in each vector point and 20 vectors!).