diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-25 12:13:57 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-25 12:13:57 +0000 |
commit | a98549b8ecf41718f224c79c8debb1a31400b231 (patch) | |
tree | 38f581ce8c09d637406c276b2912409a4e84ffa7 /package/libs/libiconv-full/Makefile | |
parent | 9b0128251566d34a7cad973baca4b43948d4cac1 (diff) | |
download | upstream-a98549b8ecf41718f224c79c8debb1a31400b231.tar.gz upstream-a98549b8ecf41718f224c79c8debb1a31400b231.tar.bz2 upstream-a98549b8ecf41718f224c79c8debb1a31400b231.zip |
libiconv-full: fix build with fortify source
Avoid redefining `realpath` to fix the following error:
.../include/fortify/stdlib.h:36:13: error: 'realpath' undeclared here (not in a function)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 46127
Diffstat (limited to 'package/libs/libiconv-full/Makefile')
-rw-r--r-- | package/libs/libiconv-full/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/libiconv-full/Makefile b/package/libs/libiconv-full/Makefile index 75bca83348..997cce2365 100644 --- a/package/libs/libiconv-full/Makefile +++ b/package/libs/libiconv-full/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libiconv-full PKG_VERSION:=1.11.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> |