Rejuvenating Autoconf
Rejuvenating Autoconf
Posted Oct 24, 2020 11:15 UTC (Sat) by rzaa (guest, #130641)In reply to: Rejuvenating Autoconf by felixfix
Parent article: Rejuvenating Autoconf
./configure --prefix=$HOME/.local/stow/progname_progversion && make && make install
cd $HOME/.local/stow/
stow progname_progversion
Posted Oct 24, 2020 14:30 UTC (Sat)
by felixfix (subscriber, #242)
[Link]
I remember well the first time I installed anything with autoconf. It was like magic.
Posted Oct 25, 2020 10:07 UTC (Sun)
by nix (subscriber, #2304)
[Link] (2 responses)
/configure --prefix=$HOME/.local && make && \
(or make install prefix=... with a sufficiently old package)
The configure-time prefix is the prefix the package *runs* from, and only provides a default for the prefix it is installed to. Stowed packages do not run from their installation location: that's the whole point of stow...
Posted Oct 25, 2020 19:38 UTC (Sun)
by rzaa (guest, #130641)
[Link] (1 responses)
Posted Oct 26, 2020 15:27 UTC (Mon)
by nix (subscriber, #2304)
[Link]
Rejuvenating Autoconf
Rejuvenating Autoconf
make install DESTDIR=/home./local/stow/progname_progversion
cd $HOME/.local/stow/
stow progname_progversion
Rejuvenating Autoconf
I realized that I haven't used these prefixes correctly.
Rejuvenating Autoconf