Skip to content

Commit

Permalink
MAINT updating the iced installation.
Browse files Browse the repository at this point in the history
There is no need to copy scripts/ice. The python package installs
it on its own
  • Loading branch information
NelleV committed Mar 25, 2020
1 parent 9f0ed45 commit 2e97fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ readstrimming: $(INST_SOURCES)/cutsite_trimming.cpp
iced: $(INST_SOURCES)/ice_mod
ifeq ("$(RUNNER)","root")
@echo "Installing the iced package as root"
(cp $(INST_SOURCES)/ice_mod/iced/scripts/ice ${INST_SCRIPTS}; cd $(INST_SOURCES)/ice_mod/; ${PYTHON_PATH}/python setup.py install;)
(cd $(INST_SOURCES)/ice_mod/; ${PYTHON_PATH}/python setup.py install;)
else
@echo "Installing the iced package in --user repository [runner=$(RUNNER)]"
(cp $(INST_SOURCES)/ice_mod/iced/scripts/ice ${INST_SCRIPTS}; cd $(INST_SOURCES)/ice_mod/; ${PYTHON_PATH}/python setup.py install --user;)
(cd $(INST_SOURCES)/ice_mod/; ${PYTHON_PATH}/python setup.py install --user;)
endif

test: config_check
Expand Down

0 comments on commit 2e97fae

Please sign in to comment.