diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-07 02:49:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-07 02:49:24 +0000 |
commit | 504eda0da94790e9e888ce095a31e0aa7617932c (patch) | |
tree | 74c71661d81e2c5e54326201bc2ce76e00fd4673 /package/hotplug2/Makefile | |
parent | 0ca2b7f92cc00ad95420afd46f5e8f70baf93d42 (diff) | |
download | upstream-504eda0da94790e9e888ce095a31e0aa7617932c.tar.gz upstream-504eda0da94790e9e888ce095a31e0aa7617932c.tar.bz2 upstream-504eda0da94790e9e888ce095a31e0aa7617932c.zip |
hotplug2: replace udevtrigger from the udev-106 source with a much smaller self-contained, stripped-down version
SVN-Revision: 25920
Diffstat (limited to 'package/hotplug2/Makefile')
-rw-r--r-- | package/hotplug2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/hotplug2/Makefile b/package/hotplug2/Makefile index de46332500..7e1dda7a04 100644 --- a/package/hotplug2/Makefile +++ b/package/hotplug2/Makefile @@ -25,7 +25,6 @@ include $(INCLUDE_DIR)/package.mk define Package/hotplug2 SECTION:=base CATEGORY:=Base system - DEPENDS:=+udevtrigger VERSION:=1.0-beta-$(PKG_RELEASE) TITLE:=Version 1.0 Dynamic device management subsystem for embedded systems URL:=http://isteve.bofh.cz/~isteve/hotplug2/ @@ -45,10 +44,16 @@ MAKE_FLAGS += \ COPTS="$(TARGET_CFLAGS)" \ STATIC_WORKER="fork" +define Build/Compile + $(call Build/Compile/Default) + $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/udevtrigger src/udevtrigger.c +endef + define Package/hotplug2/install $(INSTALL_DIR) $(1)/etc $(INSTALL_DATA) ./files/hotplug2.rules $(1)/etc/ $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/udevtrigger $(1)/sbin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/hotplug2 $(1)/sbin/ endef |