mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
fix version info for packages that either lack PKG_VERSION or PKG_RELEASE
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3890 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8169e62b1d
commit
c955b95e8f
@ -55,7 +55,15 @@ define Package/Default
|
||||
DEPENDS:=
|
||||
MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
|
||||
SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
|
||||
VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
||||
ifneq ($(PKG_VERSION),)
|
||||
ifneq ($(PKG_RELEASE),)
|
||||
VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
||||
else
|
||||
VERSION:=$(PKG_VERSION)
|
||||
endif
|
||||
else
|
||||
VERSION:=$(PKG_RELEASE)
|
||||
endif
|
||||
PKGARCH:=$(ARCH)
|
||||
PRIORITY:=optional
|
||||
DEFAULT:=
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user