[pypy-svn] r51822 - pypy/branch/unified-rtti/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Sat Feb 23 13:50:54 CET 2008


Author: arigo
Date: Sat Feb 23 13:50:52 2008
New Revision: 51822

Modified:
   pypy/branch/unified-rtti/pypy/translator/c/genc.py
Log:
Don't depend on trackgcroot.py to be an executable file.
(e.g. it's not the cause with py.test --dist)


Modified: pypy/branch/unified-rtti/pypy/translator/c/genc.py
==============================================================================
--- pypy/branch/unified-rtti/pypy/translator/c/genc.py	(original)
+++ pypy/branch/unified-rtti/pypy/translator/c/genc.py	Sat Feb 23 13:50:52 2008
@@ -835,7 +835,7 @@
 \t$(CC) $(CFLAGS) -o $@ -S $< $(INCLUDEDIRS)
 
 gcmaptable.s: $(ASMFILES)
-\t$(PYPYDIR)/translator/c/gcc/trackgcroot.py $(ASMFILES) > $@ || (rm -f $@ && exit 1)
+\tpython $(PYPYDIR)/translator/c/gcc/trackgcroot.py $(ASMFILES) > $@ || (rm -f $@ && exit 1)
 
 clean:
 \trm -f $(OBJECTS) $(TARGET)



More information about the Pypy-commit mailing list