diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-05-01 10:05:20 -0700 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-05-05 21:11:01 +0200 |
commit | 476054102791d395af7225e47e6024573bebf2fe (patch) | |
tree | cfe8c247e3f675ed0f469f8787a4f47d1d4da1f1 /package/libs/elfutils/Makefile | |
parent | b18d1d5d3f28def7cc0b2b01e9951dcacc2b5857 (diff) | |
download | upstream-476054102791d395af7225e47e6024573bebf2fe.tar.gz upstream-476054102791d395af7225e47e6024573bebf2fe.tar.bz2 upstream-476054102791d395af7225e47e6024573bebf2fe.zip |
elfutils: Fix compile with uClibc-ng
Probably glibc too. argp_help takes a char *. not const char *.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
[updated with upstream version of the patch]
Diffstat (limited to 'package/libs/elfutils/Makefile')
-rw-r--r-- | package/libs/elfutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/elfutils/Makefile b/package/libs/elfutils/Makefile index c6b1d6df65..e148df096c 100644 --- a/package/libs/elfutils/Makefile +++ b/package/libs/elfutils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=elfutils PKG_VERSION:=0.176 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://sourceware.org/$(PKG_NAME)/ftp/$(PKG_VERSION) |