[Python-checkins] python/dist/src/Mac/OSX Makefile,1.17,1.18
jackjansen@users.sourceforge.net
jackjansen@users.sourceforge.net
Fri, 02 Aug 2002 14:04:49 -0700
Update of /cvsroot/python/python/dist/src/Mac/OSX
In directory usw-pr-cvs1:/tmp/cvs-serv9972
Modified Files:
Makefile
Log Message:
When building the IDE check that waste is available, to forestall
surprises later (the IDE won't work without waste).
Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** Makefile 2 Aug 2002 15:32:12 -0000 1.17
--- Makefile 2 Aug 2002 21:04:46 -0000 1.18
***************
*** 99,102 ****
--- 99,107 ----
install_IDE: $(INSTALLED_PYTHONW)
+ @if $(INSTALLED_PYTHONW) -c "import waste"; then ; else \
+ echo PythonIDE needs the \"waste\" extension module; \
+ echo See Mac/OSX/README for details; \
+ exit 1; \
+ fi
$(INSTALLED_PYTHONW) $(srcdir)/Mac/scripts/BuildApplet.py \
--output $(PYTHONAPPSDIR)/PythonIDE.app --noargv \