lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit fc959cf5b8ccee6431faef618afe85ccdd304333
parent 81f9889bb03f093fc432997421e1d443b1673679
Author: Álvaro Fernández Rojas <noltari@gmail.com>
Date:   Wed, 17 Jun 2015 21:30:38 +0200

flashrom: fix build with musl

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>

Diffstat:
Mutils/flashrom/Makefile | 2+-
Autils/flashrom/patches/0002-fix-musl-compatibility.patch | 12++++++++++++
2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/utils/flashrom/Makefile b/utils/flashrom/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=flashrom PKG_VERSION:=0.9.8 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://download.flashrom.org/releases diff --git a/utils/flashrom/patches/0002-fix-musl-compatibility.patch b/utils/flashrom/patches/0002-fix-musl-compatibility.patch @@ -0,0 +1,12 @@ +diff -uprN a/linux_spi.c b/linux_spi.c +--- a/linux_spi.c 2015-06-17 20:50:36.492963100 +0200 ++++ b/linux_spi.c 2015-06-17 20:50:00.444860800 +0200 +@@ -22,7 +22,7 @@ + #include <stdio.h> + #include <string.h> + #include <stdlib.h> +-#include <sys/fcntl.h> ++#include <fcntl.h> + #include <errno.h> + #include <ctype.h> + #include <unistd.h>