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 zach.ware
Recipients docs@python, zach.ware
Date 2014-01-31.20:55:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391201711.97.0.184979826347.issue20464@psf.upfronthosting.co.za>
In-reply-to
Content
From docs@:

On Thu, Jan 16, 2014 at 2:56 AM, Peter Bröcker <peter.broecker@uni-koeln.de> wrote:
> Hi,
>
> I have tried to set up the distutils config files for a custom module
> installation. Using the suggested snippet  from
>
> http://docs.python.org/2/install/
>
> [install]
> install-base=$HOME/python
> install-purelib=lib
> install-platlib=lib.$PLAT
> install-scripts=scripts
> install-data=data did not work for me.
>
> Instead, I had to add install-headers and additionally modify all paths
> to include $base:
>
> [install]
> install-base=/some/dir
> install-purelib=$base/lib
> install-platlib=$base/lib.$PLAT
> install-scripts=$base/scripts
> install-headers=$base/include
> install-data=$base/data
>
>
> I'm unsure if this is actually a bug, but I could only resolve this with
> the help of this answer on stackoverflow:
> http://stackoverflow.com/a/12768721
>
> Best regards,
> Peter
History
Date User Action Args
2014-01-31 20:55:11zach.waresetrecipients: + zach.ware, docs@python
2014-01-31 20:55:11zach.waresetmessageid: <1391201711.97.0.184979826347.issue20464@psf.upfronthosting.co.za>
2014-01-31 20:55:11zach.warelinkissue20464 messages
2014-01-31 20:55:11zach.warecreate