[Python-checkins] r79778 - python/trunk/Makefile.pre.in

r.david.murray python-checkins at python.org
Mon Apr 5 03:34:50 CEST 2010


Author: r.david.murray
Date: Mon Apr  5 03:34:50 2010
New Revision: 79778

Log:
Issue 8287: try to fix the gdb-python install errors on Solaris
and FreeBSD.  Patch by Dave Malcolm.


Modified:
   python/trunk/Makefile.pre.in

Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Mon Apr  5 03:34:50 2010
@@ -442,8 +442,9 @@
 # to the stripped DWARF data for the shared library.
 gdbhooks: $(BUILDPYTHON)-gdb.py
 
-$(BUILDPYTHON)-gdb.py: Tools/gdb/libpython.py
-	$(INSTALL_DATA) $< $(BUILDPYTHON)-gdb.py
+SRC_GDB_HOOKS=Tools/gdb/libpython.py
+$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
+	$(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
 
 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
 # minimal framework (not including the Lib directory and such) in the current


More information about the Python-checkins mailing list