blob: a883a03477d44ad892048dda372d182ebada3367 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
ldconfig is not helpfull here
the abspath may be wrong in some env
ldconfig from musl doesn't support any arg
diff --git a/databases/lib/Makefile.in b/databases/lib/Makefile.in
index ed3c55d..a57a080 100644
--- a/databases/lib/Makefile.in
+++ b/databases/lib/Makefile.in
@@ -91,7 +91,6 @@ ifeq ($(SHARED_LIBRARY), yes)
echo "Install shared library"
mkdir -p $(DESTDIR)$(libdir)
install -m 755 libipv6calc_db_wrapper.so.@PACKAGE_VERSION@ $(DESTDIR)$(libdir)
- /sbin/ldconfig -n $(DESTDIR)$(libdir)
else
echo "Nothing to do (shared library mode is not enabled)"
endif
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 827e3ae..61527b7 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -121,7 +121,6 @@ ifeq ($(SHARED_LIBRARY), yes)
echo "Install shared library"
mkdir -p $(DESTDIR)$(libdir)
install -m 755 libipv6calc.so.@PACKAGE_VERSION@ $(DESTDIR)$(libdir)
- /sbin/ldconfig -n $(DESTDIR)$(libdir)
else
echo "Nothing to do (shared library mode is not enabled)"
endif
|