diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-06-19 04:16:09 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-06-19 04:16:09 +0200 |
commit | c38ba76698a092eab0459952b7e598872830d3a6 (patch) | |
tree | 29795414e3f7cbfbb99e7b6bc25b749364924f95 /net/fastd/Makefile | |
parent | 789dafdb11cd992cf66dbc539ce3ef5de495ce13 (diff) |
fastd: fix musl compatibility
Prefer linux/if_ether.h over netinet/if_ether.h if available since the
musl libc if_ether.h header does not allow mixing with kernel headers,
it will result in a struct ethhdr redefinition error.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'net/fastd/Makefile')
-rw-r--r-- | net/fastd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/fastd/Makefile b/net/fastd/Makefile index 027f5491d..0574b399e 100644 --- a/net/fastd/Makefile +++ b/net/fastd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fastd PKG_VERSION:=17 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net> PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz |