[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Install correctly into directories with spaces in their...
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv16577
Modified Files:
Makefile
Log Message:
Install correctly into directories with spaces in their names
Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- Makefile 16 Feb 2004 22:50:38 -0000 1.64
+++ Makefile 6 Mar 2004 05:22:03 -0000 1.65
@@ -94,10 +94,10 @@
ARGS="install --compile --optimize=1 --force"; \
if [ 'x' != "x$(PREFIX)" ] ; then \
PREFIX=$(PREFIX); export PREFIX; \
- ARGS="$$ARGS --prefix=$(PREFIX)"; \
+ ARGS=$$ARGS --prefix="$(PREFIX)"; \
fi; \
if [ 'x' != "x$(DESTDIR)" ] ; then \
- ARGS="$$ARGS --root=$(DESTDIR)"; \
+ ARGS=$$ARGS --root="$(DESTDIR)"; \
fi; \
echo $$PYTHON -tt setup.py $$ARGS; \
$$PYTHON -tt setup.py $$ARGS