diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-23 13:34:16 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-23 13:34:16 +0000 |
commit | 298b3bd262885822406716561deb1f54eae18967 (patch) | |
tree | 1ed7aa973d4b94d22e019ec3fb4e0e1b2a6d204a | |
parent | b2803062c9cbd547d32f6ebde1a6f26da31819ce (diff) |
standardize Makefile, change section from base to net and category to "base system"
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4817 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/bridge/Makefile | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/package/bridge/Makefile b/package/bridge/Makefile index e5e7c63f66..6c08dc24d0 100644 --- a/package/bridge/Makefile +++ b/package/bridge/Makefile @@ -21,18 +21,20 @@ PKG_CAT:=zcat include $(INCLUDE_DIR)/package.mk define Package/bridge -SECTION:=base -CATEGORY:=Network -DEFAULT:=y -TITLE:=Ethernet bridging configuration utility -DESCRIPTION:=Ethernet bridging configuration utility\\\ -Manage ethernet bridging; a way to connect networks together to\\\ -form a larger network. -URL:=http://bridge.sourceforge.net/ + SECTION:=net + CATEGORY:=Base system + DEFAULT:=y + TITLE:=Ethernet bridging configuration utility + DESCRIPTION:=\ + Manage ethernet bridging: a way to connect networks together to \\\ + form a larger network. + URL:=http://bridge.sourceforge.net/ endef define Build/Configure -$(call Build/Configure/Default,--with-linux-headers=$(LINUX_DIR)) + $(call Build/Configure/Default, \ + --with-linux-headers="$(LINUX_DIR)" \ + ) endef define Package/bridge/install |