diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-09-30 06:50:11 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-09-30 06:50:11 +0000 |
commit | 3cbacc3c5e414a58ae215445519eb46db4921e08 (patch) | |
tree | fdda868b3483e251d6dd9c91f429ae094f093b45 /main/xkbcomp | |
parent | d48c529a8295229678d40751772417ef08a681f4 (diff) | |
download | aports-3cbacc3c5e414a58ae215445519eb46db4921e08.tar.bz2 aports-3cbacc3c5e414a58ae215445519eb46db4921e08.tar.xz |
main/[various]: update config.sub
Diffstat (limited to 'main/xkbcomp')
-rw-r--r-- | main/xkbcomp/APKBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/main/xkbcomp/APKBUILD b/main/xkbcomp/APKBUILD index 3629142a2d..ca5ea9a40b 100644 --- a/main/xkbcomp/APKBUILD +++ b/main/xkbcomp/APKBUILD @@ -12,8 +12,15 @@ makedepends="pkgconfig libx11-dev libxkbfile-dev" subpackages="$pkgname-doc" source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" +_builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$_builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -26,7 +33,7 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$_builddir" make DESTDIR="$pkgdir" install } |