build: allow the package maintainer info to be specified globally for a source package
SVN-Revision: 33659
This commit is contained in:
parent
48db59fab7
commit
2d7eaf2e15
1 changed files with 3 additions and 1 deletions
|
@ -13,6 +13,8 @@ else
|
|||
PKG_FIXUP_DEPENDS = $(2)
|
||||
endif
|
||||
|
||||
PKG_MAINTAINER ?= OpenWrt Developers Team <openwrt-devel@openwrt.org>
|
||||
|
||||
define Package/Default
|
||||
CONFIGFILE:=
|
||||
SECTION:=opt
|
||||
|
@ -21,7 +23,7 @@ define Package/Default
|
|||
MDEPENDS:=
|
||||
PROVIDES:=
|
||||
EXTRA_DEPENDS:=
|
||||
MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
|
||||
MAINTAINER:=$(PKG_MAINTAINER)
|
||||
SOURCE:=$(patsubst $(TOPDIR)/%,%,$(CURDIR))
|
||||
ifneq ($(PKG_VERSION),)
|
||||
ifneq ($(PKG_RELEASE),)
|
||||
|
|
Loading…
Reference in a new issue