diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-07-30 08:51:11 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-07-30 08:54:53 +0000 |
commit | 5c904717322f8113870abf48cc93c3c8b00ab4e8 (patch) | |
tree | e077e5c3afa20630fd6e96db5872f03d622d639e /main/nginx/APKBUILD | |
parent | a879839450737e3cbdb64415af42347c97ccfa28 (diff) | |
download | aports-5c904717322f8113870abf48cc93c3c8b00ab4e8.tar.bz2 aports-5c904717322f8113870abf48cc93c3c8b00ab4e8.tar.xz |
[all autotools packages]: normalize ./configure
Diffstat (limited to 'main/nginx/APKBUILD')
-rw-r--r-- | main/nginx/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/main/nginx/APKBUILD b/main/nginx/APKBUILD index 9848263bec..dfd32500df 100644 --- a/main/nginx/APKBUILD +++ b/main/nginx/APKBUILD @@ -26,7 +26,10 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ --conf-path=/etc/$pkgname/$pkgname.conf \ --pid-path=/var/run/$pkgname.pid \ --lock-path=/var/run/$pkgname.lock \ @@ -35,12 +38,15 @@ build() { --http-client-body-temp-path=/tmp/$pkgname/client-body \ --http-proxy-temp-path=/tmp/$pkgname/proxy \ --http-fastcgi-temp-path=/tmp/$pkgname/fastcgi \ - --user=http --group=http \ - --with-ipv6 --with-pcre-jit \ + --user=http \ + --group=http \ + --with-ipv6 \ + --with-pcre-jit \ --with-http_ssl_module \ --with-http_gzip_static_module \ --with-http_spdy_module \ - --with-mail --with-mail_ssl_module \ + --with-mail \ + --with-mail_ssl_module \ || return 1 make || return 1 } |