aboutsummaryrefslogtreecommitdiffstats
path: root/package/hotplug2/patches
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-10-20 20:59:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-10-20 20:59:40 +0000
commit73723393f94d1f264f92b6f787f3698e6fce69d2 (patch)
treebfdae86f781ff41c997cf7a762806945527c703d /package/hotplug2/patches
parent902aecf9e17824390511f9ff119e1c68fd6da8f0 (diff)
downloadupstream-73723393f94d1f264f92b6f787f3698e6fce69d2.tar.gz
upstream-73723393f94d1f264f92b6f787f3698e6fce69d2.tar.bz2
upstream-73723393f94d1f264f92b6f787f3698e6fce69d2.zip
hotplug2: get rid of the unnecessary reference to libdl as well
SVN-Revision: 18106
Diffstat (limited to 'package/hotplug2/patches')
-rw-r--r--package/hotplug2/patches/110-static_worker.patch13
1 files changed, 7 insertions, 6 deletions
diff --git a/package/hotplug2/patches/110-static_worker.patch b/package/hotplug2/patches/110-static_worker.patch
index 76471d59c0..453a52d542 100644
--- a/package/hotplug2/patches/110-static_worker.patch
+++ b/package/hotplug2/patches/110-static_worker.patch
@@ -26,7 +26,7 @@
DESTDIR=
-@@ -13,13 +30,15 @@ all: $(BINS)
+@@ -13,13 +30,16 @@ all: $(BINS)
install:
$(INSTALL_BIN) $(BINS) $(DESTDIR)/sbin/
@@ -46,23 +46,24 @@
+ CFLAGS += -DSTATIC_WORKER=1
+else
+ CFLAGS += $(FPIC)
++ LDFLAGS += -ldl
+endif
+
--- a/common.mak
+++ b/common.mak
-@@ -1,8 +1,11 @@
+@@ -1,7 +1,10 @@
# vim:set sw=8 nosta:
-CFLAGS=-Os -Wall -g -fPIC
+-LDFLAGS=-g -ldl
+COPTS=-Os -Wall -g
- LDFLAGS=-g -ldl
-
++LDFLAGS=-g
++
+CFLAGS=$(COPTS)
+FPIC=-fPIC
-+
+
INSTALL=install -c -m 644
INSTALL_BIN=install -c -m 755
-
--- a/workers/loader.c
+++ b/workers/loader.c
@@ -1,5 +1,23 @@