sm00th / bitlbee-discord

Bitlbee plugin for Discord (http://discordapp.com)
GNU General Public License v2.0
291 stars 27 forks source link

Custom install directory doesn't work #198

Closed La-Loutre closed 4 years ago

La-Loutre commented 4 years ago

Hello, I don't really have time to go into source code to add this feature. If someone is interested, I would be very grateful because I don't want to install it as root.

./autogen.sh && \
    ./configure --prefix=$HOME/my/dir && \
    make && \
    make install 

/usr/ prefix stuff:

make[2]: *** [Makefile:414: install-libLTLIBRARIES] Error 1
make[1]: *** [Makefile:628: install-am] Error 2

Thanks for bitblee-discord anyway.

sm00th commented 4 years ago

bitlbee-discord does not use prefixes because it installs into bitlbee's plugin dir, you can override it with --with-plugindir <path> option to ./configure but bitlbee won't pick it up if it is in a wrong directory.

La-Loutre commented 4 years ago

My bad, thanks.