diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-17 15:44:10 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-17 15:44:10 (GMT) |
commit | 7b59b42a3803b965e9b5f3ad2fdd3999c95480e6 (patch) | |
tree | 26de1343b0b166c92f3d206e540b4c254e9d5561 /Makefile.pre.in | |
parent | dcf6d2c97dbe7b7126cc4dfeb39d424a4397cdc6 (diff) | |
download | cpython-7b59b42a3803b965e9b5f3ad2fdd3999c95480e6.zip cpython-7b59b42a3803b965e9b5f3ad2fdd3999c95480e6.tar.gz cpython-7b59b42a3803b965e9b5f3ad2fdd3999c95480e6.tar.bz2 |
Added a define EXTRAMACHDEPPATH which can be used to add sys.path items
for specific platforms. Use this to add plat-mac and
plat-mac/lib-scriptpackages on MacOSX. Also tested for not having adverse
effects on Linux, and I think this code isn't used on Windows anyway.
Fixes #661521.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index c767dd5..333f348 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -612,6 +612,7 @@ maninstall: # Install the library PLATDIR= plat-$(MACHDEP) EXTRAPLATDIR= @EXTRAPLATDIR@ +EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@ MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR) XMLLIBSUBDIRS= xml xml/dom xml/parsers xml/sax PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \ @@ -622,6 +623,7 @@ PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \ plat-mac/lib-scriptpackages/Netscape \ plat-mac/lib-scriptpackages/StdSuites \ plat-mac/lib-scriptpackages/Terminal +PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \ encodings email email/test email/test/data compiler hotshot \ logging bsddb bsddb/test \ |