mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-16 20:07:23 +00:00
build: prevent excessive re-evaluation of PKG_VERSION
version_abbrev uses $(shell) and the ?= is causing make to run the command over and over again, causing a significant build slowdown Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
ef7c34c1d1
commit
14bad2001f
@ -12,9 +12,11 @@ OPENWRT_GIT = $(PROJECT_GIT)
|
|||||||
LEDE_GIT = $(PROJECT_GIT)
|
LEDE_GIT = $(PROJECT_GIT)
|
||||||
|
|
||||||
ifdef PKG_SOURCE_VERSION
|
ifdef PKG_SOURCE_VERSION
|
||||||
PKG_VERSION ?= $(if $(PKG_SOURCE_DATE),$(PKG_SOURCE_DATE)-)$(call version_abbrev,$(PKG_SOURCE_VERSION))
|
ifndef PKG_VERSION
|
||||||
PKG_SOURCE_SUBDIR ?= $(PKG_NAME)-$(PKG_VERSION)
|
PKG_VERSION := $(if $(PKG_SOURCE_DATE),$(PKG_SOURCE_DATE)-)$(call version_abbrev,$(PKG_SOURCE_VERSION))
|
||||||
PKG_SOURCE ?= $(PKG_SOURCE_SUBDIR).tar.xz
|
endif
|
||||||
|
PKG_SOURCE_SUBDIR ?= $(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_SOURCE ?= $(PKG_SOURCE_SUBDIR).tar.xz
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED)
|
DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED)
|
||||||
|
Loading…
Reference in New Issue
Block a user