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 | 9a37eaeacf30cceefd56aa53d80a6b7f3fe26503 (patch) | |
tree | a4cb5fe66248e8ae017d313bba75a876c93e1c26 /package/libnl-tiny/Makefile | |
parent | 516dcae1c7643d736e71d240790370cb140a8383 (diff) | |
download | upstream-9a37eaeacf30cceefd56aa53d80a6b7f3fe26503.tar.gz upstream-9a37eaeacf30cceefd56aa53d80a6b7f3fe26503.tar.bz2 upstream-9a37eaeacf30cceefd56aa53d80a6b7f3fe26503.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>
SVN-Revision: 25101
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 |