aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorSkip Montanaro <[email protected]>2021-02-16 15:31:55 -0600
committerSkip Montanaro <[email protected]>2021-02-16 15:31:55 -0600
commitb23fc484036e2c492b048a5701ae0b8a93d422ae (patch)
tree14797fa54795bcf891c51d8e0208dbd2eea7ae7d /src/Makefile
parentc7fc95b5c60eb8e2c18ecb2dad35af0d14aee920 (diff)
downloadpython-0.9.1-patched-QoL-b23fc484036e2c492b048a5701ae0b8a93d422ae.tar.xz
python-0.9.1-patched-QoL-b23fc484036e2c492b048a5701ae0b8a93d422ae.zip
The changes I needed to get it to build
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index bcec9de..3811b77 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -86,8 +86,8 @@ DEFPYTHONPATH= .:/usr/local/lib/python:/ufs/guido/lib/python:../lib
# is missing in most systems I have encountered, so it is turned on
# in the Makefile. Turn it off if your system doesn't have sys_errlist.)
-STRERROR_SRC= strerror.c
-STRERROR_OBJ= strerror.o
+# STRERROR_SRC= strerror.c
+# STRERROR_OBJ= strerror.o
# If your BSD system does not have a fmod() function in the library,
# uncomment the following two lines to use one I wrote.
@@ -383,8 +383,7 @@ GENSOURCES= acceler.c fgetsintr.c grammar1.c \
# ============
python: libpython.a $(OBJECTS) $(LIBDEPS) Makefile
- $(CC) $(CFLAGS) $(OBJECTS) $(LIBS) -o @python
- mv @python python
+ $(CC) $(CFLAGS) $(OBJECTS) $(LIBS) -o python
libpython.a: $(LIBOBJECTS)
-rm -f @lib