aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAnand Aiyer <aaiyer@gmail.com>2016-10-31 16:27:01 +0530
committerMatěj Cepl <mcepl@cepl.eu>2024-01-18 19:01:59 +0100
commit4f7099d9c808fa646f24540039af4ee8e7f943ab (patch)
tree326e4a847a448791ae9c0f4ee0af89c1257adc94 /Makefile
parent5e1b5fe911d4805133357e329d009f998300867d (diff)
downloadbugseverywhere-4f7099d9c808fa646f24540039af4ee8e7f943ab.tar.gz
* Forked bugseverywhere -- so update the README
* Fix web interface issue with editing a bug * Integrate the web interface into the be command line, so it can be invoked easily using 'be web'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index fe62840..125c9a3 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ RST2HTML = /usr/bin/rst2html
#PATH = /usr/bin:/bin # must include sphinx-build for 'sphinx' target.
#INSTALL_OPTIONS = "--prefix=/usr/local"
-INSTALL_OPTIONS = "--user"
+#INSTALL_OPTIONS = "--user"
# Select the documentation you wish to build
DOC = sphinx man
@@ -59,17 +59,17 @@ all: build
.PHONY: build
build: $(LIBBE_VERSION)
- python setup.py build
+ python2 setup.py build
.PHONY: doc
doc: $(DOC)
.PHONY: install
install: build doc
- python setup.py install ${INSTALL_OPTIONS}
+ python2 setup.py install ${INSTALL_OPTIONS}
test: build
- python test.py
+ python2 test.py
.PHONY: clean
clean: