You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./configure --prefix=/usr/local
make
sudo make install prefix=/usr/local/stow/foo-1.2.3
cd /usr/local/stow
stow foo-1.2.3
# if this does not work then the following might
./configure --prefix=/usr/local
make
sudo make DESTDIR=/usr/local/stow/foo-1.2.3 install
cd /usr/local/stow
# but you may have to fix the path in the installed directory before using stow
stow -t / foo-1.2.3