diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-25 13:03:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-25 13:03:36 +0000 |
commit | 4869791b063dcf18c21dc0a21c6dfc6a714ce4ac (patch) | |
tree | ff5c0fd960ed6b472fce06d00b8a845d761393ef | |
parent | 925f13da2ed40a5b19397a90eb855f8c5f99b718 (diff) | |
download | aports-4869791b063dcf18c21dc0a21c6dfc6a714ce4ac.tar.bz2 aports-4869791b063dcf18c21dc0a21c6dfc6a714ce4ac.tar.xz |
x11/libxdmcp: build fix for parallell builds
-rw-r--r-- | x11/libxdmcp/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/libxdmcp/APKBUILD b/x11/libxdmcp/APKBUILD index e5d537380b..4fd8904f4e 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" |