Skip to content

Commit

Permalink
install_rote.sh: set prefix with ./configure
Browse files Browse the repository at this point in the history
See discussion here: http://habrahabr.ru/post/254089/#comment_8349843

Changing prefix in Makefile (or with make command line arguments) doesn't
change it in rote-config, other file generated by ./configure

Providing prefix to ./configure is more reliable.
  • Loading branch information
starius committed Mar 27, 2015
1 parent 7627521 commit f908554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis/install_rote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ sudo apt-get install libncurses5-dev
wget http://sourceforge.net/projects/rote/files/rote/rote-0.2.8/rote-0.2.8.tar.gz
tar -xf rote-0.2.8.tar.gz
cd rote-0.2.8/
./configure
./configure --prefix=/usr
make
sudo make install prefix=/usr
sudo make install

cd ..
sudo rm -rf rote-0.2.8/

0 comments on commit f908554

Please sign in to comment.