diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-09-11 16:35:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-09-11 16:35:32 +0000 |
commit | 5bba260b31ff13960819ecf213953108095b571e (patch) | |
tree | 61ed10052e6cfef5eb2d63c2e0c38d29a34b5275 /package/utils/ugps/Makefile | |
parent | 9c9669230f0172fde973f8b75267251e70567369 (diff) | |
download | master-187ad058-5bba260b31ff13960819ecf213953108095b571e.tar.gz master-187ad058-5bba260b31ff13960819ecf213953108095b571e.tar.bz2 master-187ad058-5bba260b31ff13960819ecf213953108095b571e.zip |
ugps: fix filename to eliminate build problems
due to ordering PKG_SOURCE_VERSION is not defined leading
to a filename "ugps-.tar.bz2"
This errors out when an older version is in the dl/ dir (or LOCALMIRROR)
fix order and use uhttpd file naming scheme to visibly include date
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46868 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/utils/ugps/Makefile')
-rw-r--r-- | package/utils/ugps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/utils/ugps/Makefile b/package/utils/ugps/Makefile index 1c8ac6fa06..e30578f316 100644 --- a/package/utils/ugps/Makefile +++ b/package/utils/ugps/Makefile @@ -11,11 +11,11 @@ PKG_NAME:=ugps PKG_VERSION:=2015-08-17 PKG_RELEASE=$(PKG_SOURCE_VERSION) -PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.bz2 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://git.openwrt.org/project/ugps.git PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=971e6703eb9bed936cc62cd335105bd2acca14ef +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.bz2 PKG_MAINTAINER:=John Crispin <blogic@openwrt.org> PKG_LICENSE:=GPL-2.0+ |