diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-27 07:23:22 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-27 08:21:10 +0000 |
commit | 291fcb4b6d105f8570db9a6d02b2e46633a51ff3 (patch) | |
tree | d58d10b2ba6a35d9af2795ad7389c05431c0cb07 /main/dhcpcd | |
parent | 115de62900289ba7c42b82d9d78e3358ab7f55c8 (diff) | |
download | aports-291fcb4b6d105f8570db9a6d02b2e46633a51ff3.tar.bz2 aports-291fcb4b6d105f8570db9a6d02b2e46633a51ff3.tar.xz |
main/dhcpcd: build with HAVE_PRINTF_M
tell build that we support %m printf modifier
Diffstat (limited to 'main/dhcpcd')
-rw-r--r-- | main/dhcpcd/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/dhcpcd/APKBUILD b/main/dhcpcd/APKBUILD index 86e663bc2a..27e4406693 100644 --- a/main/dhcpcd/APKBUILD +++ b/main/dhcpcd/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=dhcpcd pkgver=6.9.3 -pkgrel=0 +pkgrel=1 pkgdesc="RFC2131 compliant DHCP client" url="http://roy.marples.name/projects/dhcpcd/" arch="all" @@ -28,7 +28,7 @@ prepare() { build() { cd "$srcdir/$pkgname-$pkgver" - CFLAGS="$CFLAGS -D_GNU_SOURCE" + CFLAGS="$CFLAGS -D_GNU_SOURCE -DHAVE_PRINTF_M" ./configure \ --build=$CBUILD \ --host=$CHOST \ |