diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-11-23 20:43:12 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-11-23 21:51:28 +0100 |
commit | 28876566144cc74a32eb45f2fa4d966ebef8b0b2 (patch) | |
tree | ba662f984e685c53a46526b50d8fc560ce62fcc7 /Makefile | |
parent | cdc80c3677753ad6eea8d864552077042bd9abb0 (diff) |
[pkg] allow multi-provider
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ SKIP_CACHECK ?= no VENDOR_PATH ?= providers APPNAME ?= $(shell VENDOR_PATH=${VENDOR_PATH} branding/scripts/getparam appname | tail -n 1) TARGET ?= $(shell VENDOR_PATH=${VENDOR_PATH} branding/scripts/getparam binname | tail -n 1) -PROVIDER ?= $(shell grep ^'provider =' ${VENDOR_PATH}/vendor.conf | cut -d '=' -f 2 | tr -d "[:space:]") +PROVIDER ?= $(shell grep ^'provider =' ${VENDOR_PATH}/vendor.conf | cut -d '=' -f 2 | cut -d ',' -f 1 | tr -d "[:space:]") VERSION ?= $(shell git describe 2> /dev/null) ifeq ($(VERSION),) VERSION := "unknown" |