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 Ivailo.Monev
Recipients Ivailo.Monev, ned.deily
Date 2015-02-12.04:47:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423716476.49.0.482965935165.issue23435@psf.upfronthosting.co.za>
In-reply-to
Content
I found the source of the problem, it's in distutils. at line 148 in Lib/distutils/util.py (in the tarball) the path join does not handle the full path properly (os.path.join returns the second path if it is full path), as a workaround I used "return new_root + pathname[1:]" and it worked as expected.

Do note that I've forgot to mention in my initial comment/message on this issue does not mention that I'm trying to install it ala DESTDIR. Trying to install Python as regular user failed because it was trying to place files on / instead of the sepcified DESTDIR.

Will you do something about this?
History
Date User Action Args
2015-02-12 04:47:56Ivailo.Monevsetrecipients: + Ivailo.Monev, ned.deily
2015-02-12 04:47:56Ivailo.Monevsetmessageid: <1423716476.49.0.482965935165.issue23435@psf.upfronthosting.co.za>
2015-02-12 04:47:56Ivailo.Monevlinkissue23435 messages
2015-02-12 04:47:55Ivailo.Monevcreate