diff options
author | Guido van Rossum <guido@python.org> | 2008-05-08 17:53:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2008-05-08 17:53:56 (GMT) |
commit | 6d4df9b343b0c2ce9cfebba3f9e09d501f0b239b (patch) | |
tree | 6777798c15dfa159e4caf30c22583d1fb445723b | |
parent | e4ca8156ef146174c64d537d9fa07a880231e699 (diff) | |
download | cpython-6d4df9b343b0c2ce9cfebba3f9e09d501f0b239b.zip cpython-6d4df9b343b0c2ce9cfebba3f9e09d501f0b239b.tar.gz cpython-6d4df9b343b0c2ce9cfebba3f9e09d501f0b239b.tar.bz2 |
Don't echo the echo commands added to "make install". Fix a typo.
-rw-r--r-- | Makefile.pre.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 4d19f82..203ee5f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -713,10 +713,10 @@ fullinstall: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORK # "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 \ |