[Python-checkins] python/dist/src/Lib/distutils/command bdist_dumb.py,1.16,1.16.26.1 bdist_wininst.py,1.27.4.1,1.27.4.2

Barry A. Warsaw barry@zope.com
Wed, 17 Apr 2002 23:38:02 -0400


>>>>> "AB" == Anthony Baxter <anthony@interlink.com.au> writes:

    AB> Set the warn_dir option to 0 before running the install
    AB> command.  This suppresses bogus warnings about modules
    AB> installed into a directory not in sys.path.

Ah cool, so does this mean I can remove the PYTHONPATH=... prefix from
this make command now? :)

-------------------- snip snip --------------------
SETUPCMD=	setup.py --quiet install --install-lib

...

install-packages:
	for p in $(PACKAGES); \
	do \
	    gunzip -c $$p.tar.gz | tar xf -; \
	    (cd $$p ; PYTHONPATH=$(PYTHONLIBDIR) $(PYTHON) $(SETUPCMD) $(PYTHONLIBDIR)); \
	done
-------------------- snip snip --------------------

-Barry