diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-05-16 15:49:21 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-16 23:27:23 +0200 |
commit | 01dfbb48c5c0725a4656518864af792c0f532e99 (patch) | |
tree | f83c09902f75695b744026cd8fadc00d0c3a6069 /package/lua-periphery/lua-periphery.mk | |
parent | 416e35b44a107316532bdde416128dcffaed49ff (diff) | |
download | buildroot-01dfbb48c5c0725a4656518864af792c0f532e99.tar.gz buildroot-01dfbb48c5c0725a4656518864af792c0f532e99.zip |
lua-periphery: depend on c-periphery instead of cloning it
lua-periphery currently clones and builds the c-periphery library by
itself. This causes two problems:
1/ It does not integrate properly with the download infrastructure of
Buildroot, making offline builds impossible since not the entire
source code is downloaded by Buildroot.
2/ It does not use the latest version of c-periphery, which has some
fixes contributed by Vicente to fix c-periphery on MIPS.
This commit fixes:
http://autobuild.buildroot.org/results/0ad/0ad656970b3cbc84b5531b28155ba2f747715fe3/
[Peter: fix minor typo in patch 0001 description]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/lua-periphery/lua-periphery.mk')
-rw-r--r-- | package/lua-periphery/lua-periphery.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/lua-periphery/lua-periphery.mk b/package/lua-periphery/lua-periphery.mk index 0717a27545..99e1dbea93 100644 --- a/package/lua-periphery/lua-periphery.mk +++ b/package/lua-periphery/lua-periphery.mk @@ -7,6 +7,7 @@ LUA_PERIPHERY_VERSION_UPSTREAM = 1.0.4 LUA_PERIPHERY_VERSION = $(LUA_PERIPHERY_VERSION_UPSTREAM)-1 LUA_PERIPHERY_SUBDIR = lua-periphery +LUA_PERIPHERY_DEPENDENCIES = c-periphery LUA_PERIPHERY_LICENSE = MIT LUA_PERIPHERY_LICENSE_FILES = $(LUA_PERIPHERY_SUBDIR)/LICENSE |