mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-01 11:11:08 +02:00
28 lines
748 B
Diff
28 lines
748 B
Diff
From b11d83df189670defe4a29c624f2930351c13df2 Mon Sep 17 00:00:00 2001
|
|
From: Mike Frysinger <vapier@gentoo.org>
|
|
Date: Wed, 4 Mar 2015 13:56:36 -0500
|
|
Subject: [PATCH] do not run ldconfig
|
|
|
|
Let the distro/user deal with ldconfig updating. Running it blindly like
|
|
this breaks DESTDIR installs as `ldconfig` only operates on system paths.
|
|
|
|
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
|
|
---
|
|
Makefile | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index a3ead30..46c683d 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -127,7 +127,6 @@ install-libreg:
|
|
$(NQ) ' INSTALL libreg'
|
|
$(Q)mkdir -p $(DESTDIR)/$(LIBDIR)
|
|
$(Q)cp $(LIBREG) $(DESTDIR)/$(LIBDIR)/
|
|
- $(Q)ldconfig
|
|
|
|
%.o: %.c regdb.h $(LIBREG)
|
|
$(NQ) ' CC ' $@
|
|
--
|
|
2.3.1
|
|
|