diff options
author | Mike Gilbert <floppym@gentoo.org> | 2018-07-06 14:49:00 -0400 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-03-29 13:21:30 +0100 |
commit | 83708f2988d8b644b36baf50f2d32d8599a1483e (patch) | |
tree | 56d1bcd02703980da0c4081258e1b3a5b61b7780 | |
parent | distutils: make -OO enable both opt-1 and opt-2 optimization (diff) | |
download | cpython-83708f2988d8b644b36baf50f2d32d8599a1483e.tar.gz cpython-83708f2988d8b644b36baf50f2d32d8599a1483e.tar.bz2 cpython-83708f2988d8b644b36baf50f2d32d8599a1483e.zip |
Install shared libs in LIBDESTgentoo-3.7.3
-rw-r--r-- | Makefile.pre.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 6abc997a5dc..ad8d3b128bd 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -146,7 +146,6 @@ SCRIPTDIR= $(prefix)/lib ABIFLAGS= @ABIFLAGS@ # Detailed destination directories -BINLIBDEST= $(LIBDIR)/python$(VERSION) LIBDEST= $(SCRIPTDIR)/python$(VERSION) INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION) CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION) @@ -157,7 +156,7 @@ EXT_SUFFIX= @EXT_SUFFIX@ LDSHARED= @LDSHARED@ $(PY_LDFLAGS) BLDSHARED= @BLDSHARED@ $(PY_CORE_LDFLAGS) LDCXXSHARED= @LDCXXSHARED@ -DESTSHARED= $(BINLIBDEST)/lib-dynload +DESTSHARED= $(LIBDEST)/lib-dynload # Executable suffix (.exe on Windows and Mac OS X) EXE= @EXEEXT@ @@ -1140,7 +1139,7 @@ commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \ @FRAMEWORKALTINSTALLLAST@ # Install shared libraries enabled by Setup -DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED) +DESTDIRS= $(exec_prefix) $(LIBDIR) $(DESTSHARED) oldsharedinstall: $(DESTSHARED) $(SHAREDMODS) @for i in X $(SHAREDMODS); do \ |