From: Guido van Rossum Date: Thu, 13 Jan 1994 16:01:38 +0000 (+0000) Subject: Added TESTPATH X-Git-Tag: v1.0.1~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42f69dab7e378168e17c1eacc228cae19ad6d749;p=thirdparty%2FPython%2Fcpython.git Added TESTPATH --- diff --git a/Modules/Setup.guido b/Modules/Setup.guido index 60e44d1acd75..8ed5a1e877cd 100644 --- a/Modules/Setup.guido +++ b/Modules/Setup.guido @@ -27,12 +27,22 @@ # Some special rules to define PYTHONPATH # Edit the definitions below to indicate which options you are using +# Don't edit this (usually) DESTLIB=$(prefix)/lib/python + +# Standard enabled (tests are always available) +TESTPATH=$(DESTLIB)/test + +# Enable this for SGI systems ARCHPATH=:$(DESTLIB)/sgi + +# Enable this for Sun systems #ARCHPATH=:$(DESTLIB)/sun4 + +# Enable this if stdwin installed STDWINPATH=:$(DESTLIB)/stdwin -PYTHONPATH=.:$(DESTLIB)$(ARCHPATH)$(STDWINPATH) +PYTHONPATH=.:$(DESTLIB)$(TESTPATH)$(ARCHPATH)$(STDWINPATH) # Modules that should always be present (non UNIX dependent) diff --git a/Modules/Setup.irix5 b/Modules/Setup.irix5 index a058eb36a93a..d30f19e5e5d8 100644 --- a/Modules/Setup.irix5 +++ b/Modules/Setup.irix5 @@ -27,12 +27,22 @@ # Some special rules to define PYTHONPATH # Edit the definitions below to indicate which options you are using +# Don't edit this (usually) DESTLIB=$(prefix)/lib/python + +# Standard enabled (tests are always available) +TESTPATH=$(DESTLIB)/test + +# Enable this for SGI systems ARCHPATH=:$(DESTLIB)/sgi + +# Enable this for Sun systems #ARCHPATH=:$(DESTLIB)/sun4 -#STDWINPATH=:$(DESTLIB)/stdwin -PYTHONPATH=.:$(DESTLIB)$(ARCHPATH)$(STDWINPATH) +# Enable this if stdwin installed +STDWINPATH=:$(DESTLIB)/stdwin + +PYTHONPATH=.:$(DESTLIB)$(TESTPATH)$(ARCHPATH)$(STDWINPATH) # Modules that should always be present (non UNIX dependent)