Commit 811fbbc4 authored by Guido van Rossum's avatar Guido van Rossum

create $(DESTSHARED) library if needed

parent ec25b91b
......@@ -153,8 +153,11 @@ yuvconvert.o: yuvconvert.c
# Rules to build and install all shared modules
sharedmods: $(SHAREDMODS)
sharedinstall: $(SHAREDMODS)
sharedinstall: $(DESTSHARED) $(SHAREDMODS)
for i in dummy $(SHAREDMODS); do \
if test -f $$i; then mv $$i $(DESTSHARED)/$$i; fi; done
$(DESTSHARED):
mkdir $(DESTSHARED)
# Stuff is appended here by makesetup and make depend
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment