mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 10:18:09 -04:00
28 lines
905 B
Plaintext
28 lines
905 B
Plaintext
$NetBSD: patch-au,v 1.8 2015/04/24 03:01:36 rodent Exp $
|
|
|
|
Fix for unpriviliged build.
|
|
|
|
http://hg.python.org/cpython/rev/a0f43f4481e0
|
|
|
|
--- Makefile.pre.in.orig 2014-12-10 15:59:50.000000000 +0000
|
|
+++ Makefile.pre.in
|
|
@@ -512,7 +512,7 @@ gdbhooks: $(BUILDPYTHON)-gdb.py
|
|
|
|
SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
|
|
$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
|
|
- $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
|
|
+ cp $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
|
|
|
|
# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
|
|
# minimal framework (not including the Lib directory and such) in the current
|
|
@@ -922,7 +922,8 @@ altbininstall: $(BUILDPYTHON)
|
|
(cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
|
|
fi \
|
|
fi; \
|
|
- else true; \
|
|
+ elif test -f $(INSTSONAME); then \
|
|
+ $(INSTALL_SHARED) $(INSTSONAME) $(DESTDIR)$(LIBDIR); \
|
|
fi
|
|
|
|
# Install the versioned manual page
|