diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 22:56:14 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 22:56:14 +0100 |
commit | 4b4ad2c27321f4bddd86d4be3fddeb00e70b706c (patch) | |
tree | 1a170c4aa1154137adc9f77392176a434789caeb /main | |
parent | cbc65268bff091d08a319796505b07e7791b2100 (diff) | |
download | aports-4b4ad2c27321f4bddd86d4be3fddeb00e70b706c.tar.bz2 aports-4b4ad2c27321f4bddd86d4be3fddeb00e70b706c.tar.xz |
main/libnetcf: fix build on eglibc
Diffstat (limited to 'main')
-rw-r--r-- | main/libnetcf/APKBUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/libnetcf/APKBUILD b/main/libnetcf/APKBUILD index 31b8f13d08..ad0a9135f2 100644 --- a/main/libnetcf/APKBUILD +++ b/main/libnetcf/APKBUILD @@ -21,6 +21,9 @@ _builddir="$srcdir/$_realname-$pkgver" prepare() { cd "$_builddir" patch -p1 < ../libnetcf-netcf_transaction.patch || return 1 + # fix eglibc-2.16 build issue + sed -i -e '/gets is a/d' \ + gnulib/lib/stdio.in.h || return 1 } build() { |