diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-11 08:39:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-11 08:39:38 +0000 |
commit | 7148688001f55ce0fae5a4549d0b6d77a4c6abc8 (patch) | |
tree | bf728cfa9fd3e169d7d1a6f3356ebae8b44af76a /main/py-gtk | |
parent | f02ef941452b38484fd996f13a149ecdd89d906a (diff) | |
download | aports-7148688001f55ce0fae5a4549d0b6d77a4c6abc8.tar.bz2 aports-7148688001f55ce0fae5a4549d0b6d77a4c6abc8.tar.xz |
main/py-gtk: fix build with fortify
Diffstat (limited to 'main/py-gtk')
-rw-r--r-- | main/py-gtk/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/py-gtk/APKBUILD b/main/py-gtk/APKBUILD index 378e698a9e..adffd97d54 100644 --- a/main/py-gtk/APKBUILD +++ b/main/py-gtk/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=py-gtk pkgver=2.24.0 -pkgrel=8 +pkgrel=9 pkgdesc="Python bindings for the GTK widget set" url="http://www.pygtk.org/" arch="all" @@ -34,6 +34,7 @@ prepare() { build() { cd "$_builddir" + CFLAGS="$CFLAGS -D_GNU_SOURCE" \ ./configure \ --build=$CBUILD \ --host=$CHOST \ |