←back to thread

47 points breezk0 | 2 comments | | HN request time: 0s | source

Title.

I think it is very rude to just install to any "default" directory and not asks the user where he wants it to be installed.

Show context
diffeomorphism ◴[] No.45772742[source]
Weird windows centric view.

There shouldn't even be a question where to put things much less a "wherever you want". Instead you want a sane, sensible standard.

replies(6): >>45772869 #>>45772897 #>>45772992 #>>45773110 #>>45773120 #>>45774091 #
1. munchlax ◴[] No.45772869[source]
There exists makefiles that don't allow DESTDIR, as in

  mkdir derp
  gmake install DESTDIR=$PWD/derp
Distribution maintainers have to patch this :(
replies(1): >>45772929 #
2. zahlman ◴[] No.45772929[source]
I'm accustomed to setting this up with `./configure --prefix`.