diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-20 20:36:53 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-20 20:36:53 (GMT) |
commit | 4735b234d823d936b60b083a9fb6f89dc62472a0 (patch) | |
tree | 060ae2e5aebcc685fea7456fd639ed74bad561d5 /Makefile.pre.in | |
parent | 9e50023898e8f556d5d74f1bbf008d6a100430d7 (diff) | |
download | cpython-4735b234d823d936b60b083a9fb6f89dc62472a0.zip cpython-4735b234d823d936b60b083a9fb6f89dc62472a0.tar.gz cpython-4735b234d823d936b60b083a9fb6f89dc62472a0.tar.bz2 |
Set the executable bits when installing the shared library in a MacOSX
framework. Fixes #758112.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 01ec10a..735ec3c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -849,7 +849,7 @@ frameworkinstallstructure: $(LDLIBRARY) $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources - $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY) + $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY) # This installs Mac/Lib into the framework frameworkinstallmaclib: |