[Python-3000-checkins] r62876 - python/branches/py3k/Makefile.pre.in

guido.van.rossum python-3000-checkins at python.org
Thu May 8 19:53:56 CEST 2008


Author: guido.van.rossum
Date: Thu May  8 19:53:56 2008
New Revision: 62876

Log:
Don't echo the echo commands added to "make install".  Fix a typo.


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

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Thu May  8 19:53:56 2008
@@ -713,10 +713,10 @@
 # "make install" is an alias for "make altinstall" since we never want to
 # overwrite Python 2.x.
 install:	altinstall
-		echo "* Note: not installed as 'python'."
-		echo "* Use 'make fullinstall' to install as 'python'."
-		echo "* However, 'make fulinstall' is discouraged,"
-		echo "* as it will clobber your Python 2.x installation."
+		@echo "* Note: not installed as 'python'."
+		@echo "* Use 'make fullinstall' to install as 'python'."
+		@echo "* However, 'make fullinstall' is discouraged,"
+		@echo "* as it will clobber your Python 2.x installation."
 
 # Install almost everything without disturbing previous versions
 altinstall:	@FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \


More information about the Python-3000-checkins mailing list