This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rwgk
Recipients
Date 2006-09-14.17:51:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
"make install" of Python 2.5c2 fails under Tru64 Unix
V5.1. The failure is fixed by the simple patch below.
I.e., simply remove two lines from Makefile.pre.in.
Apparently the native make doesn't support comments
where commands are expected.


diff -r -u Python-2.5c2/Makefile.pre.in
Python-2.5c2_cci/Makefile.pre.in
--- Python-2.5c2/Makefile.pre.in        2006-07-30
09:20:10.000000000 -0700
+++ Python-2.5c2_cci/Makefile.pre.in    2006-09-14
10:17:12.000000000 -0700
@@ -850,8 +850,6 @@
        $(INSTALL_DATA) Modules/Setup.config
$(DESTDIR)$(LIBPL)/Setup.config
        $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup
$(DESTDIR)$(LIBPL)/makesetup
        $(INSTALL_SCRIPT) $(srcdir)/install-sh
$(DESTDIR)$(LIBPL)/install-sh
-       # Substitution happens here, as the
completely-expanded BINDIR
-       # is not available in configure
        sed -e
"s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," <
$(srcdir)/Misc/python-config.in >python-config
        $(INSTALL_SCRIPT) python-config
$(DESTDIR)$(BINDIR)/python$(VERSION)-config
        rm python-config
History
Date User Action Args
2007-08-23 14:42:39adminlinkissue1558802 messages
2007-08-23 14:42:39admincreate