diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-18 11:49:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-18 12:01:24 +0000 |
commit | 9068ee0e3b5c347d351b7e59e6f36c20d52a00b3 (patch) | |
tree | 1ae37bd560f4f049250ce8e92fc004f19501feb5 /main/dpkg/APKBUILD | |
parent | b1d9b75fd832ae3cb1e7b9e4cc9bd400097cdf09 (diff) | |
download | aports-9068ee0e3b5c347d351b7e59e6f36c20d52a00b3.tar.bz2 aports-9068ee0e3b5c347d351b7e59e6f36c20d52a00b3.tar.xz |
main/dpkg: remove --host/--build so --print-architecture gets it right
when the --host/--build options was added to the ./configure it caused
$ dpkg --print-architecture
uclibc-linux-i386
which broke debootstrap. Without those configure options the restult is:
$ dpkg --print-architecture
i386
which makes debootstrap happy.
Diffstat (limited to 'main/dpkg/APKBUILD')
-rw-r--r-- | main/dpkg/APKBUILD | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/dpkg/APKBUILD b/main/dpkg/APKBUILD index 98a5bacc9c..f3d243df08 100644 --- a/main/dpkg/APKBUILD +++ b/main/dpkg/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=dpkg pkgver=1.16.10 -pkgrel=1 +pkgrel=2 pkgdesc="The Debian Package Manager" url="http://packages.debian.org/dpkg" arch="all" @@ -21,8 +21,6 @@ prepare() { build() { cd "$_builddir" ./configure \ - --build=$CBUILD \ - --host=$CHOST \ --prefix=/usr \ --localstatedir=/var \ --with-zlib \ |