diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-04 08:04:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-04 08:04:08 +0000 |
commit | 70dbb8a0e7e690d925680977fd5c6cca0c6ba816 (patch) | |
tree | ff3a1500aa62be6e7b8763bd0e295cff26d83781 /core/ncurses | |
parent | 3e63f263f685e1e829d9ca80091ddfb246015b22 (diff) | |
download | aports-70dbb8a0e7e690d925680977fd5c6cca0c6ba816.tar.bz2 aports-70dbb8a0e7e690d925680977fd5c6cca0c6ba816.tar.xz |
core/ncurses: make install does not handle parallell runs
Diffstat (limited to 'core/ncurses')
-rw-r--r-- | core/ncurses/APKBUILD | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/ncurses/APKBUILD b/core/ncurses/APKBUILD index ba01abb021..4a9f6ea5a8 100644 --- a/core/ncurses/APKBUILD +++ b/core/ncurses/APKBUILD @@ -23,16 +23,15 @@ build() { make -j1 sources make || return 1 - make install DESTDIR=$pkgdir/ + make -j1 install DESTDIR=$pkgdir/ } terminfo() { - local orig=$pkgdir - pkgdir="$pkgdir-terminfo" + subpkgdir="$pkgdir-terminfo" pkgname="Database with info for different terminals" - rm -r $pkgdir - mkdir -p $pkgdir/usr/share - mv $orig/usr/share/terminfo $pkgdir/usr/share + rm -rf $subpkgdir + mkdir -p $subpkgdir/usr/share + mv $pkgdir/usr/share/terminfo $subpkgdir/usr/share } md5sums="b6593abe1089d6aab1551c105c9300e3 ncurses-5.6.tar.gz |