diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-01-26 11:33:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-01-26 11:33:38 +0000 |
commit | eaa763410fbd4815eab137444af24a05d72aec58 (patch) | |
tree | e5945fac7a7dec1709375bd4897ba4dafd2de923 /package/libnl-tiny/Makefile | |
parent | 9303cd12100a79bc6aac9cb24938bfbf945016dd (diff) | |
download | upstream-eaa763410fbd4815eab137444af24a05d72aec58.tar.gz upstream-eaa763410fbd4815eab137444af24a05d72aec58.tar.bz2 upstream-eaa763410fbd4815eab137444af24a05d72aec58.zip |
libnl-tiny: Fix for c++ compatibility
g++ compiler issued some errors like "invalid conversion from void* to *struct nl_attr"
when compiling cpp file which calls libnl-tiny functions. (it's OK with gcc)
Also see https://dev.openwrt.org/ticket/7854
Patch from: kentarou matsuyama <matsuyama@thinktube.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25101 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libnl-tiny/Makefile')
-rw-r--r-- | package/libnl-tiny/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libnl-tiny/Makefile b/package/libnl-tiny/Makefile index 4b02ef16be..f964249283 100644 --- a/package/libnl-tiny/Makefile +++ b/package/libnl-tiny/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libnl-tiny PKG_VERSION:=0.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 include $(INCLUDE_DIR)/package.mk |