mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-14 06:45:30 -04:00
17 lines
454 B
Plaintext
17 lines
454 B
Plaintext
$NetBSD: patch-au,v 1.9 2012/04/14 10:47:19 obache Exp $
|
|
|
|
1.) Fix for unpriviliged build.
|
|
|
|
--- Makefile.pre.in.orig 2010-08-01 22:05:31.000000000 +0000
|
|
+++ Makefile.pre.in
|
|
@@ -785,7 +785,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 manual page
|