Update configure to make it idempotent again and add MidnightBSD - libgrapheme … | |
git clone git://git.suckless.org/libgrapheme | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit df25b40e3ba37e63bf914c199de448c01b3d1b6e | |
parent 6769c08f08ab6bb86301f941028641e6314b8e9e | |
Author: Laslo Hunhold <[email protected]> | |
Date: Sat, 29 Oct 2022 01:29:53 +0200 | |
Update configure to make it idempotent again and add MidnightBSD | |
Signed-off-by: Laslo Hunhold <[email protected]> | |
Diffstat: | |
M configure | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/configure b/configure | |
@@ -11,12 +11,12 @@ replace_line() | |
} | |
case $(uname) in | |
- DragonFly|FreeBSD|Linux|NetBSD) | |
+ DragonFly|FreeBSD|Linux|MidnightBSD|NetBSD) | |
# the default | |
replace_line 'SOFLAGS' ' ' '-shared -nostdlib -Wl,--soname… | |
replace_line 'SONAME' ' ' 'libgrapheme.so.$(VERSION_MAJOR… | |
replace_line 'SOSYMLINK' '' 'true' | |
- replace_line 'LDCONFIG' '' 'ldconfig \# unset to not call … | |
+ replace_line 'LDCONFIG' '' 'ldconfig' | |
;; | |
OpenBSD) | |
replace_line 'SOFLAGS' ' ' '-shared -nostdlib' |