diff --git a/Python/Makefile.in b/Python/Makefile.in index f0f8d21ec22..838c2961bd5 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -48,7 +48,7 @@ SYSLIBS= -lm # === Rules === -all: $(LIB) frozenmain.o +all: $(LIB) $(LIB): $& $(OBJS) -rm -f $(LIB) diff --git a/Python/import.c b/Python/import.c index e222c511aa6..35c0d9d44d5 100644 --- a/Python/import.c +++ b/Python/import.c @@ -530,7 +530,9 @@ extern struct frozen { int size; } frozen_modules[]; -static int +/* This function is also used from frozenmain.c */ + +int init_frozen(name) char *name; {