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 swarren
Recipients collinwinter, swarren, vanandel
Date 2007-09-21.06:04:30
SpamBayes Score 0.038056813
Marked as misclassified No
Message-id <1190354670.99.0.379555905636.issue1704287@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch should solve the problem by adding appropriate
dependencies to the libinstall target.

I have tested:

./configure; make install

but not yet:

./configure; make all install
./configure; make all; make install

Note: I introduced a new "build_all" phony target so that both all and
libinstall could depend on this, rather than making libinstall either:

* depend on all (which I guess would cause nasty looping dependencies if
one were to run "make all install")

* duplicate all the dependencies of all, thus causing a maintenance issue

Possibly, the new dependencies should be added to install instead of
libinstall?

Alternatively, I guess one could make "all" touch a file, and "install"
or "libinstall" validate that the file exists, and error out if it doesn't.
Files
File name Uploaded
py_1704287.diff swarren, 2007-09-21.06:04:30
History
Date User Action Args
2007-09-21 06:04:31swarrensetspambayes_score: 0.0380568 -> 0.038056813
recipients: + swarren, collinwinter, vanandel
2007-09-21 06:04:31swarrensetspambayes_score: 0.0380568 -> 0.0380568
messageid: <1190354670.99.0.379555905636.issue1704287@psf.upfronthosting.co.za>
2007-09-21 06:04:30swarrenlinkissue1704287 messages
2007-09-21 06:04:30swarrencreate