summaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-07-25 13:03:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-07-25 13:03:36 +0000
commit4869791b063dcf18c21dc0a21c6dfc6a714ce4ac (patch)
treeff5c0fd960ed6b472fce06d00b8a845d761393ef /x11
parent925f13da2ed40a5b19397a90eb855f8c5f99b718 (diff)
downloadaports-4869791b063dcf18c21dc0a21c6dfc6a714ce4ac.tar.bz2
aports-4869791b063dcf18c21dc0a21c6dfc6a714ce4ac.tar.xz
x11/libxdmcp: build fix for parallell builds
Diffstat (limited to 'x11')
-rw-r--r--x11/libxdmcp/APKBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/libxdmcp/APKBUILD b/x11/libxdmcp/APKBUILD
index e5d53738..4fd8904f 100644
--- a/x11/libxdmcp/APKBUILD
+++ b/x11/libxdmcp/APKBUILD
@@ -5,8 +5,8 @@ pkgrel=1
pkgdesc="X11 Display Manager Control Protocol library"
url="http://xorg.freedesktop.org/"
license="custom"
-depends="uclibc"
-makedepends="xproto pkgconfig g++"
+depends=
+makedepends="xproto pkgconfig"
subpackages="$pkgname-dev"
source="http://xorg.freedesktop.org/releases/individual/lib/libXdmcp-$pkgver.tar.bz2"
@@ -15,6 +15,6 @@ build() {
./configure --prefix=/usr \
--sysconfdir=/etc
make || return 1
- make DESTDIR="$pkgdir" install || return 1
+ make -j1 DESTDIR="$pkgdir" install || return 1
}
md5sums="10facf2bc7cbd5e5c1a698b8a210a582 libXdmcp-1.0.2.tar.bz2"