[Python-checkins] python/dist/src/Mac/OSX Makefile,1.44,1.45

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Sat, 21 Jun 2003 15:07:18 -0700


Update of /cvsroot/python/python/dist/src/Mac/OSX
In directory sc8-pr-cvs1:/tmp/cvs-serv6058

Modified Files:
	Makefile 
Log Message:
Give compileall a -d option so it works correctly in the face of
DESTDIR being non-null.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** Makefile	20 Jun 2003 14:33:38 -0000	1.44
--- Makefile	21 Jun 2003 22:07:16 -0000	1.45
***************
*** 224,229 ****
  
  	$(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST)
! 	$(BUILDPYTHON) -Wi -tt $(compileall) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
! 	$(BUILDPYTHON) -O -Wi -tt $(compileall) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
  
  #
--- 224,229 ----
  
  	$(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST)
! 	$(BUILDPYTHON) -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
! 	$(BUILDPYTHON) -O -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
  
  #