diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-08-29 11:50:48 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-08-30 07:57:55 -0300 |
commit | 4b2805d43383137552ecf46a186ccd5b31e1b1c1 (patch) | |
tree | 8990c28785f8d99cd2e93c27b4de888411b9cfbf /utils | |
parent | 53aa4049a69529785c29656c38c884c27cf3e2d3 (diff) |
yunbridge: fix PKG_BUILD_DIR
PKG_BUILD_DIR was set outside of BUILD_DIR.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/yunbridge/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/yunbridge/Makefile b/utils/yunbridge/Makefile index a6827e207..24dbc9c73 100644 --- a/utils/yunbridge/Makefile +++ b/utils/yunbridge/Makefile @@ -14,7 +14,7 @@ PKG_RELEASE:=1 PKG_SOURCE_URL:=https://codeload.github.com/arduino/YunBridge/tar.gz/$(PKG_VERSION)? PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_HASH:=9e5ffc7a0d0cc2c92e972e425adcc49b77cf39da075d31728e7755d316d910d8 -PKG_BUILD_DIR:=YunBridge-$(PKG_VERSION) +PKG_BUILD_DIR:=$(BUILD_DIR)/YunBridge-$(PKG_VERSION) PKG_MAINTAINER:=John Crispin <blogic@openwrt.org> PKG_LICENSE:=GPL-2.0 |