Commit 13f98f050591eb047f8874e75b0a9f91c35b44c3

Authored by Sergio Oliveira
1 parent bd705cf8
Exists in test

Make install_solr depend on install

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
Makefile
... ... @@ -19,10 +19,10 @@ install:
19 19 python setup.py install
20 20 virtualenv --relocatable $(VIRTUALENV_PATH)
21 21  
22   -test_install: install install_solr
  22 +test_install: install_solr
23 23 pip install flake8
24 24  
25   -install_solr:
  25 +install_solr: install
26 26 # Install java
27 27 which apt-get && sudo apt-get install default-jre -y || echo # deb
28 28 which yum && sudo yum install java -y || echo # rpm
... ...