summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-01-13 16:01:38 (GMT)
committerGuido van Rossum <guido@python.org>1994-01-13 16:01:38 (GMT)
commit42f69dab7e378168e17c1eacc228cae19ad6d749 (patch)
tree0dc809bbbfa5642b5000335b5f17e799ee93aa3d
parent4c627be931de3e3ea985203960d6248c38e3e5b5 (diff)
downloadcpython-42f69dab7e378168e17c1eacc228cae19ad6d749.zip
cpython-42f69dab7e378168e17c1eacc228cae19ad6d749.tar.gz
cpython-42f69dab7e378168e17c1eacc228cae19ad6d749.tar.bz2
Added TESTPATH
-rw-r--r--Modules/Setup.guido12
-rw-r--r--Modules/Setup.irix514
2 files changed, 23 insertions, 3 deletions
diff --git a/Modules/Setup.guido b/Modules/Setup.guido
index 60e44d1..8ed5a1e 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 a058eb3..d30f19e 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)