How to add prefix when sudo make install
#389
-
The installation using make install recognizes the following
I am going to install it to
or:
or:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
prefix=/usr make install You can also set it separately (f.e. if other tools want to use it as well): export prefix=/usr
make install |
Beta Was this translation helpful? Give feedback.
-
it seems that |
Beta Was this translation helpful? Give feedback.
prefix
is a recognized environment variable, so you can useYou can also set it separately (f.e. if other tools want to use it as well):
export prefix=/usr make install