diff options
author | Guido van Rossum <guido@python.org> | 1994-11-10 22:44:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-11-10 22:44:15 (GMT) |
commit | 132f5c2d77edf39520ac7f9eecb231e01acf6e2b (patch) | |
tree | f6786e68bfca32e385f2445b9e7787f7f8d8763d /Modules | |
parent | 69d9eb9f56200173f6ad7f96ca18b85d5a5a991a (diff) | |
download | cpython-132f5c2d77edf39520ac7f9eecb231e01acf6e2b.zip cpython-132f5c2d77edf39520ac7f9eecb231e01acf6e2b.tar.gz cpython-132f5c2d77edf39520ac7f9eecb231e01acf6e2b.tar.bz2 |
don't fail moving empty list of shared modules
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index f4460d6..ae6e8de 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -150,6 +150,6 @@ yuvconvert.o: yuvconvert.c # Rules to build and install all shared modules sharedmods: $(SHAREDMODS) sharedinstall: $(SHAREDMODS) - mv $(SHAREDMODS) $(DESTSHARED) + for i in $(SHAREDMODS); do mv $$i $(DESTSHARED)/$$i; done # Stuff is appended here by makesetup and make depend |