[Python-checkins] r79366 - python/branches/py3k-jit/Makefile.pre.in

collin.winter python-checkins at python.org
Wed Mar 24 01:07:50 CET 2010


Author: collin.winter
Date: Wed Mar 24 01:07:50 2010
New Revision: 79366

Log:
Fix 'make ctest' on Linux.

Modified:
   python/branches/py3k-jit/Makefile.pre.in

Modified: python/branches/py3k-jit/Makefile.pre.in
==============================================================================
--- python/branches/py3k-jit/Makefile.pre.in	(original)
+++ python/branches/py3k-jit/Makefile.pre.in	Wed Mar 24 01:07:50 2010
@@ -719,7 +719,7 @@
 AllUnitTests: $(UNITTEST_SRCS) $(srcdir)/Unittests/*.h build_all python-config
 	-$(CXX) $(CPPFLAGS) -I$(srcdir)/Unittests/googletest/include -o $@ \
 	 	$(UNITTEST_SRCS) -L. $(LDFLAGS) \
-		`$(RUNSHARED) ./$(BUILDPYTHON) ./python-config --cflags --libs`
+		`$(RUNSHARED) ./$(BUILDPYTHON) ./python-config --cflags --ldflags`
 
 
 ctest: AllUnitTests


More information about the Python-checkins mailing list