summaryrefslogtreecommitdiffstats
path: root/package/olsr/olsr-configurable-ldconfig.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2015-01-21 10:35:21 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-01-25 14:58:37 +0100
commit901024b805edb2c20a9e9121071024604396070c (patch)
tree684b86e05f34afd2fcdfe93182aa637e24435820 /package/olsr/olsr-configurable-ldconfig.patch
parent7b4fca6697d9ede0c85e2454eba1c6d13603b5a3 (diff)
downloadbuildroot-901024b805edb2c20a9e9121071024604396070c.tar.gz
buildroot-901024b805edb2c20a9e9121071024604396070c.zip
olsr: bump to version 0.6.8
Also: * Add hash file * Rename patch to new naming convention * Revamp/cleanup initscript * Install sample config to the correct location Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/olsr/olsr-configurable-ldconfig.patch')
-rw-r--r--package/olsr/olsr-configurable-ldconfig.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/package/olsr/olsr-configurable-ldconfig.patch b/package/olsr/olsr-configurable-ldconfig.patch
deleted file mode 100644
index 73fff7eecf..0000000000
--- a/package/olsr/olsr-configurable-ldconfig.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Make ldconfig configurable
-
-In a cross-compilation set up, running /sbin/ldconfig is useless, so
-we make the path to ldconfig configurable through the environment/make
-command line. This allows to pass LDCONFIG=/bin/true when doing
-cross-compilation.
-
-[Gustavo: update patch for olsr 0.6.4]
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-diff -Nura olsrd-0.6.4.orig/make/Makefile.linux olsrd-0.6.4/make/Makefile.linux
---- olsrd-0.6.4.orig/make/Makefile.linux 2013-01-29 09:00:18.041356389 -0300
-+++ olsrd-0.6.4/make/Makefile.linux 2013-01-29 09:01:51.598226624 -0300
-@@ -3,6 +3,7 @@
- #
-
- ARCH := $(shell uname -m)
-+LDCONFIG ?= /sbin/ldconfig
-
- DESTDIR ?=
- prefix ?= /usr/local
-@@ -26,9 +27,9 @@
- PLUGIN_SONAME ?= lib$(PLUGIN_NAME).so
- PLUGIN_FULLNAME ?= $(PLUGIN_NAME).so.$(PLUGIN_VER)
- INSTALL_LIB = install -D -m 755 $(PLUGIN_FULLNAME) $(LIBDIR)/$(PLUGIN_FULLNAME); \
-- /sbin/ldconfig -n $(LIBDIR)
-+ $(LDCONFIG) -n $(LIBDIR)
- UNINSTALL_LIB = rm -f $(LIBDIR)/$(PLUGIN_FULLNAME); \
-- /sbin/ldconfig -n $(LIBDIR)
-+ $(LDCONFIG) -n $(LIBDIR)
-
- ifdef OLSRD_PLUGIN
- GENERATE_PIC = true
OpenPOWER on IntegriCloud