diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-27 13:15:15 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-27 13:15:15 +0000 |
| commit | 76974a88b0c908fe311b66c9bde93d481a5e6bf2 (patch) | |
| tree | 181aa6d7434fb9715314727fa21555d660574838 /Python/pythonmain.c | |
| parent | 02a607d4005215abb5b014829e26c5aaa6de83fa (diff) | |
| download | cpython-76974a88b0c908fe311b66c9bde93d481a5e6bf2.tar.gz | |
Porting to CW CFM68K
Diffstat (limited to 'Python/pythonmain.c')
| -rw-r--r-- | Python/pythonmain.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/pythonmain.c b/Python/pythonmain.c index ac9ca2c5b5..64aae7ace4 100644 --- a/Python/pythonmain.c +++ b/Python/pythonmain.c @@ -106,6 +106,8 @@ realmain(argc, argv) fprintf(stderr, "usage: %s [-d] [-i] [-s] [-u ] [-v] [-c cmd | file | -] [arg] ...\n", argv[0]); +#if !(defined(__CFM68K__) && defined(__MWERKS__)) + /* Mwerks cfm68k linker doesn't like these... */ fprintf(stderr, "\ \n\ Options and arguments (and corresponding environment variables):\n\ @@ -128,6 +130,7 @@ PYTHONSTARTUP: file executed on interactive startup (no default)\n\ PYTHONPATH : colon-separated list of directories prefixed to the\n\ default module search path. The result is sys.path.\n\ "); +#endif /* !cfm68k || !mwerks */ exit(2); /*NOTREACHED*/ |
