]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added TESTPATH
authorGuido van Rossum <guido@python.org>
Thu, 13 Jan 1994 16:01:38 +0000 (16:01 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 13 Jan 1994 16:01:38 +0000 (16:01 +0000)
Modules/Setup.guido
Modules/Setup.irix5

index 60e44d1acd75dd5f68293ffb9c0d5f747eeb02a9..8ed5a1e877cdf7885336e2c71e5d3e3121024927 100644 (file)
 # 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)
index a058eb36a93a6ffc3845d4336c0d0916db6d6711..d30f19e5e5d8dff1a86341437792911fcf261c40 100644 (file)
 # 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)