[issue3433] Mac, 3.0 framework install error with fink cp

2010-04-29 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
status: pending - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue3433
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3433] Mac, 3.0 framework install error with fink cp

2009-01-02 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

Fixed in r68150 (python-trunk), r68151 (python 2.6.x), r68152 (python 
3.x).

Could someone that actually has Fink installed confirm that the issue is 
actually fixed? My patch consists of changing 'cp' to '/bin/cp' to ensure 
that the system copy of that command is used.

--
resolution:  - fixed
status: open - pending
title: libtk - Mac, 3.0 framework install error with fink cp

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue3433
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3433] Mac, 3.0 framework install error with fink cp

2008-10-07 Thread Ronald Oussoren

Ronald Oussoren [EMAIL PROTECTED] added the comment:

IMHO the best fix would be to use /bin/cp instead of plain cp. It is 
not possible to use $(INSTALL) here because this step does a recursive 
copy.

NOTE: The same fix should also be applied to the trunk and release26-maint 
branch.

--
nosy: +ronaldoussoren

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3433
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3433] Mac, 3.0 framework install error with fink cp

2008-10-07 Thread Ronald Oussoren

Changes by Ronald Oussoren [EMAIL PROTECTED]:


--
versions: +Python 2.6

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3433
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3433] Mac, 3.0 framework install error with fink cp

2008-07-23 Thread Robin Dunn

New submission from Robin Dunn [EMAIL PROTECTED]:

OSX Leopard (10.5.4)
Python-3.0b2 tarball 

./configure --enable-universalsdk --enable-framework 
make
sudo make install 

Ends with this error:
cd PythonLauncher  make install DESTDIR=
test -d /Applications/Python 3.0 || mkdir -p /Applications/Python 3.0
test -d /Applications/Python 3.0/Python Launcher.app  rm -r
/Applications/Python 3.0/Python Launcher.app
cp -r Python Launcher.app /Applications/Python 3.0
touch /Applications/Python 3.0/Python Launcher.app
test -d /Applications/Python 3.0 || mkdir -p /Applications/Python 3.0
test -d /Applications/Python 3.0/IDLE.app  rm -r
/Applications/Python 3.0/IDLE.app
make[1]: [install_IDLE] Error 1 (ignored)
cp -PR IDLE/IDLE.app /Applications/Python 3.0
cp: Warning: the meaning of `-P' will change in the future to conform to
POSIX.
Use `--parents' for the old meaning, and `--no-dereference' for the new one.
ln -sf
/Library/Frameworks/Python.framework/Versions/3.0/Resources/Python.app/Contents/MacOS/Python
/Applications/Python 3.0/IDLE.app/Contents/MacOS/Python
ln: creating symbolic link `/Applications/Python
3.0/IDLE.app/Contents/MacOS/Python' to
`/Library/Frameworks/Python.framework/Versions/3.0/Resources/Python.app/Contents/MacOS/Python':
No such file or directory
make[1]: *** [install_IDLE] Error 1
make: *** [frameworkinstallapps] Error 2


It looks like this is due to fink's cp being found first on the PATH. 
Temporarily disabling /sw/bin/cp so /bin/cp would be found first then
the install finished.

--
components: Macintosh
messages: 70190
nosy: robind
severity: normal
status: open
title: Mac, 3.0 framework install error with fink cp
type: compile error
versions: Python 3.0

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3433
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com