[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Become intolerant of tabs
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv23288
Modified Files:
Makefile
Log Message:
Become intolerant of tabs
Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- Makefile 26 Jun 2003 03:23:53 -0000 1.50
+++ Makefile 10 Jul 2003 23:11:30 -0000 1.51
@@ -48,12 +48,12 @@
do_build:
@$(FINDPYTHON); \
echo $$PYTHON setup.py build; \
- $$PYTHON setup.py build
+ $$PYTHON -tt setup.py build
clean:
@$(FINDPYTHON); \
- echo $$PYTHON setup.py clean; \
- $$PYTHON setup.py clean
+ echo $$PYTHON -tt setup.py clean; \
+ $$PYTHON -tt setup.py clean
rm -rf build dist
rm -f MANIFEST
rm -f lib/mixminion/_unittest.py
@@ -69,13 +69,13 @@
test:
@$(FINDPYTHON); \
- echo $$PYTHON setup.py run --subcommand=unittests; \
- $$PYTHON setup.py run --subcommand=unittests
+ echo $$PYTHON -tt setup.py run --subcommand=unittests; \
+ $$PYTHON -tt setup.py run --subcommand=unittests
time:
@$(FINDPYTHON); \
echo $$PYTHON setup.py run --subcommand=benchmarks; \
- $$PYTHON setup.py run --subcommand=benchmarks
+ $$PYTHON -tt setup.py run --subcommand=benchmarks
#======================================================================
# Install target (minimal.)
@@ -84,13 +84,13 @@
install: do_build
@$(FINDPYTHON); \
if [ 'x' = "x$(PREFIX)" ] ; then \
- echo $$PYTHON setup.py install --compile --optimize=1 --force; \
- $$PYTHON setup.py install --compile --optimize=1 --force; \
+ echo $$PYTHON -tt setup.py install --compile --optimize=1 --force; \
+ $$PYTHON -tt setup.py install --compile --optimize=1 --force; \
else \
PREFIX=$(PREFIX); \
export PREFIX; \
- echo $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force; \
- $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force;\
+ echo $$PYTHON -tt setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force; \
+ $$PYTHON -tt setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force;\
fi
# echo "MIXMINION SAYS: Please ignore the warning about sys.path:"
@@ -155,8 +155,8 @@
sdist: clean
@$(FINDPYTHON); \
- echo $$PYTHON setup.py sdist; \
- $$PYTHON setup.py sdist; \
+ echo $$PYTHON -tt setup.py sdist; \
+ $$PYTHON -tt setup.py sdist; \
VERSION=`ls dist/*.tar.gz | sed -e s/.*-// | sed -e s/.tar.gz//`; \
cp README dist/README-$$VERSION
@@ -237,7 +237,7 @@
lines:
@$(FINDPYTHON); \
- $$PYTHON etc/countlines.py src/*.[ch] lib/mixminion/[A-Z_]*.py \
+ $$PYTHON -tt etc/countlines.py src/*.[ch] lib/mixminion/[A-Z_]*.py \
lib/mixminion/*/*.py --noncode lib/mixminion/[a-z]*.py
xxxx: