From: Felix Fietkau Date: Tue, 20 Oct 2009 20:59:40 +0000 (+0000) Subject: hotplug2: get rid of the unnecessary reference to libdl as well X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=40b4d59b5d5924946160d8650031e8ea09014212 hotplug2: get rid of the unnecessary reference to libdl as well SVN-Revision: 18106 --- 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 @@