-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bash: properly install shared objects; pkglint fixes
- Loading branch information
adam
committed
Nov 25, 2022
1 parent
2138647
commit 296f0f1
Showing
6 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
shells/bash/patches/patch-aj → shells/bash/patches/patch-Makefile.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
shells/bash/patches/patch-af → ...ls/bash/patches/patch-builtins_printf.def
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
shells/bash/patches/patch-ag → shells/bash/patches/patch-builtins_psize.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-examples_loadables_Makefile.in,v 1.1 2022/11/25 23:29:47 adam Exp $ | ||
|
||
Correctly install shared objects (e.g. unstripped on some platforms). | ||
|
||
--- examples/loadables/Makefile.in.orig 2022-11-25 23:21:05.000000000 +0000 | ||
+++ examples/loadables/Makefile.in | ||
@@ -281,7 +281,7 @@ install-supported: all installdirs insta | ||
@echo installing example loadable builtins in $(DESTDIR)${loadablesdir} | ||
@for prog in ${ALLPROG}; do \ | ||
echo $$prog ; \ | ||
- $(INSTALL_PROGRAM) $(INSTALLMODE) $$prog $(DESTDIR)$(loadablesdir)/$$prog ;\ | ||
+ ${BSD_INSTALL_LIB} $(INSTALLMODE) $$prog $(DESTDIR)$(loadablesdir)/$$prog ;\ | ||
done | ||
|
||
uninstall-dev: |