diff options
author | adam <adam@pkgsrc.org> | 2022-08-05 13:30:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-08-05 13:30:22 +0000 |
commit | b2bb2d6bea2cdc3cbfd43d67194b804fe58913ee (patch) | |
tree | 73af2eca9cd0a67541b2bd7bc6e54357bb881ddb | |
parent | 512ad46048ae0b5455b486c054e048e07ef26b7b (diff) | |
download | pkgsrc-b2bb2d6bea2cdc3cbfd43d67194b804fe58913ee.tar.gz |
help2man: install shared object correctly
-rw-r--r-- | converters/help2man/distinfo | 3 | ||||
-rw-r--r-- | converters/help2man/patches/patch-Makefile.in | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/converters/help2man/distinfo b/converters/help2man/distinfo index 9ed323e7025..ff92aa7095c 100644 --- a/converters/help2man/distinfo +++ b/converters/help2man/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.48 2022/04/11 16:26:23 adam Exp $ +$NetBSD: distinfo,v 1.49 2022/08/05 13:30:22 adam Exp $ BLAKE2s (help2man-1.49.2.tar.xz) = 3e1f3b261a45d7920d1231a66a44161b28f011135f21c5d2f82d66211d17a9b4 SHA512 (help2man-1.49.2.tar.xz) = cb8f9f923263d7160a27a7924ae559aba93d7258167888eb9e0e3e97a2014297b8d739b2bb7869acbf586354d099bd91d85f8208b901bce5ba0c5ad4b6abd6d5 Size (help2man-1.49.2.tar.xz) = 225428 bytes +SHA1 (patch-Makefile.in) = 3898cc3f3375d07bb0a3761cd41bf24134604da2 SHA1 (patch-bindtextdomain.c) = 527f54db2b220bad60e80ed8959b9e9c20191cc7 diff --git a/converters/help2man/patches/patch-Makefile.in b/converters/help2man/patches/patch-Makefile.in new file mode 100644 index 00000000000..f3e4190c72a --- /dev/null +++ b/converters/help2man/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.3 2022/08/05 13:30:23 adam Exp $ + +Install shared object correctly. + +--- Makefile.in.orig 2022-08-03 09:48:03.000000000 +0000 ++++ Makefile.in +@@ -76,7 +76,7 @@ install_base: + + install_preload: preload + $(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir) +- $(INSTALL_PROGRAM) $(preload).so $(DESTDIR)$(pkglibdir) ++ ${BSD_INSTALL_LIB} $(preload).so $(DESTDIR)$(pkglibdir) + + install_l10n: msg_l10n man_l10n info_l10n + set -e; \ |