diff options
author | Vanya Sergeev <vsergeev@gmail.com> | 2015-05-27 16:26:11 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-08 15:17:18 +0200 |
commit | bdebcd39025bd6413d920b4993f7f70a94934387 (patch) | |
tree | f97749a4da4572f69a5d57f3abc643220982f741 /package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch | |
parent | aee57627b09d0955270a562b8adaa0ff88ef523b (diff) | |
download | buildroot-bdebcd39025bd6413d920b4993f7f70a94934387.tar.gz buildroot-bdebcd39025bd6413d920b4993f7f70a94934387.zip |
lua-periphery: bump version to 1.0.5, remove dependency on c-periphery
The new version of the lua-periphery LuaRocks package handles fetching the
c-periphery dependency, so that it no longer needs to be cloned during the
lua-periphery build process. Consequently, this removes the need for selecting
c-periphery as a package dependency in buildroot and the need for the patches
that modify lua-periphery to be built against an external c-periphery.
[Thomas:
- remove dependency from .mk file, as noticed by Baruch
- add patch to fix uClibc build]
Signed-off-by: Vanya Sergeev <vsergeev@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch')
-rw-r--r-- | package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch b/package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch deleted file mode 100644 index f6d3f271a6..0000000000 --- a/package/lua-periphery/0001-Makefile-don-t-clone-build-c-periphery.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 395bb4cb37612a4ac94346531b13ff0e901ed05e Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Date: Tue, 5 May 2015 23:59:17 +0200 -Subject: [PATCH 1/2] Makefile: don't clone/build c-periphery - -This patch adjusts lua-periphery Makefile to not clone and build the -c-periphery library by itself, and instead use the already available -c-periphery library. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - Makefile | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/lua-periphery/Makefile b/lua-periphery/Makefile -index bed9b32..a4c68eb 100644 ---- a/lua-periphery/Makefile -+++ b/lua-periphery/Makefile -@@ -36,8 +36,8 @@ install: - - ########################################################################### - --$(LIB): $(C_PERIPHERY_LIB) $(SRCS) -- $(CC) $(CFLAGS) $(LDFLAGS) $(SRCS) $(C_PERIPHERY_LIB) -o $@ -+$(LIB): $(SRCS) -+ $(CC) $(CFLAGS) $(LDFLAGS) $(SRCS) -lc-periphery -o $@ - - $(C_PERIPHERY_LIB): $(C_PERIPHERY)/Makefile - cd $(C_PERIPHERY); $(MAKE) --- -2.1.0 - |