mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Install shared modules enabled by Setup* in $(DESTSHARED) not
$(DESTSHARED)/Modules.
This commit is contained in:
parent
76192ee4f5
commit
ac959779f0
1 changed files with 4 additions and 3 deletions
|
|
@ -494,9 +494,10 @@ DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
|
|||
|
||||
oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
|
||||
@for i in X $(SHAREDMODS); do \
|
||||
if test $$i != X; \
|
||||
then $(INSTALL_SHARED) $$i $(DESTSHARED)/$$i; \
|
||||
fi; \
|
||||
if test $$i != X; then \
|
||||
echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
|
||||
$(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
$(DESTSHARED):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue