diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-04 19:14:26 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-04 19:14:26 +0100 |
commit | 41711cfdeda6f5fd9b2531f538f3643854d7d3ea (patch) | |
tree | 81f82f393428e2660dc707b03bf9edee8d725447 | |
parent | ce3044ec1b68a65e41b030e120ae0213dc24cda8 (diff) | |
download | buildroot-41711cfdeda6f5fd9b2531f538f3643854d7d3ea.tar.gz buildroot-41711cfdeda6f5fd9b2531f538f3643854d7d3ea.zip |
Revert "i2c-tools: Add i2c-dev.h to staging directory for userspace i2c drivers."
This reverts commit ff673f9a22b1467878f1a117f2c6198e9683d5c7, as the
modified i2c-dev.h from i2c-tools has some definitions that conflict
with the i2c.h from the kernel headers. This means that a userspace
program or library that includes both will fail to build, as is the
case with libsoc.
Fixes:
http://autobuild.buildroot.org/results/1f4/1f451a338487a2a3c8a8f9b18540d41b90ee5aac/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/i2c-tools/i2c-tools.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/package/i2c-tools/i2c-tools.mk b/package/i2c-tools/i2c-tools.mk index 450dba7b24..c6a967d987 100644 --- a/package/i2c-tools/i2c-tools.mk +++ b/package/i2c-tools/i2c-tools.mk @@ -9,7 +9,6 @@ I2C_TOOLS_SOURCE = i2c-tools-$(I2C_TOOLS_VERSION).tar.bz2 I2C_TOOLS_SITE = http://dl.lm-sensors.org/i2c-tools/releases I2C_TOOLS_LICENSE = GPLv2+, GPLv2 (py-smbus) I2C_TOOLS_LICENSE_FILES = COPYING -I2C_TOOLS_INSTALL_STAGING = YES define I2C_TOOLS_BUILD_CMDS $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) @@ -22,8 +21,4 @@ define I2C_TOOLS_INSTALL_TARGET_CMDS done endef -define I2C_TOOLS_INSTALL_STAGING_CMDS - $(INSTALL) -D -m644 $(@D)/include/linux/i2c-dev.h $(STAGING_DIR)/usr/include/linux/ -endef - $(eval $(generic-package)) |