diff options
author | Guido van Rossum <guido@python.org> | 1995-01-22 00:47:59 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-22 00:47:59 +0000 |
commit | 811fbbc4cecbda12e00c0898747226602b18119b (patch) | |
tree | 89448a1a932dfb6b11e5f6d2dbf857e0a9983ae3 | |
parent | ec25b91ba3cfabf48e7691e53bd747c2803d6f4e (diff) | |
download | cpython-git-811fbbc4cecbda12e00c0898747226602b18119b.tar.gz |
create $(DESTSHARED) library if needed
-rw-r--r-- | Modules/Makefile.pre.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 0feec275f2..27326ccf1c 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -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 |