diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-20 20:49:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-20 20:49:44 +0000 |
commit | 7a230fb6be073d7c5382c7f1fea898496381bf73 (patch) | |
tree | 28a8e44ee343ff4d85bbccd2c402e4882ff9c39a /package/hotplug2/Makefile | |
parent | 7d4b5438ac753f367bc73ee6c92e5608c55dae72 (diff) | |
download | upstream-7a230fb6be073d7c5382c7f1fea898496381bf73.tar.gz upstream-7a230fb6be073d7c5382c7f1fea898496381bf73.tar.bz2 upstream-7a230fb6be073d7c5382c7f1fea898496381bf73.zip |
hotplug2: compile in the worker module statically, saves >20k uncompressed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18104 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hotplug2/Makefile')
-rw-r--r-- | package/hotplug2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/hotplug2/Makefile b/package/hotplug2/Makefile index 3dab96ba7f..b51e5a97f6 100644 --- a/package/hotplug2/Makefile +++ b/package/hotplug2/Makefile @@ -36,15 +36,15 @@ define Package/hotplug2/description This is an implementation of Hotplug2-1.0-beta endef -MAKE_FLAGS += CFLAGS="$(TARGET_CFLAGS) $(FPIC) -DHAVE_RULES -I." +MAKE_FLAGS += \ + COPTS="$(TARGET_CFLAGS)" \ + STATIC_WORKER="fork" define Package/hotplug2/install $(INSTALL_DIR) $(1)/etc $(INSTALL_DATA) ./files/hotplug2.rules $(1)/etc/ $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/hotplug2 $(1)/sbin/ - $(INSTALL_DIR) $(1)/lib/hotplug2 - $(INSTALL_BIN) $(PKG_BUILD_DIR)/workers/worker_fork.so $(1)/lib/hotplug2 endef $(eval $(call BuildPackage,hotplug2)) |