mirror of https://github.com/dirtbags/moth.git
Make setup.py the last install action
I do this so I can install as not root, and get everything else before setup fails
This commit is contained in:
parent
bd53cab933
commit
ca6e158fc8
3
Makefile
3
Makefile
|
@ -30,7 +30,6 @@ install: base-install $(INSTALL_TARGETS)
|
|||
echo 'BIN = "$(BIN)"' >> ctf/paths.py
|
||||
echo 'SBIN = "$(SBIN)"' >> ctf/paths.py
|
||||
echo 'BASE_URL = "$(BASE_URL)"' >> ctf/paths.py
|
||||
python setup.py install
|
||||
|
||||
install bin/pointscli $(BIN)
|
||||
install bin/in.pointsd bin/in.flagd \
|
||||
|
@ -56,6 +55,8 @@ install: base-install $(INSTALL_TARGETS)
|
|||
touch $(VAR)/disabled/skynet
|
||||
touch $(VAR)/disabled/survey
|
||||
|
||||
python setup.py install
|
||||
|
||||
|
||||
base-install:
|
||||
install --directory $(LIB) $(BIN) $(SBIN)
|
||||
|
|
Loading…
Reference in New Issue