summaryrefslogtreecommitdiff
path: root/readline
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2014-03-06 10:38:17 +0100
committerJuergen Daubert <jue@jue.li>2014-03-06 10:38:17 +0100
commitd397cd4d564a5726403f8a2ba10c7f0e5a9792ee (patch)
tree50b3391fcad4b94af26047cd096aa852e0dec581 /readline
parentef13bfd88faf0dda9ff9ecad6499b0c2b4f190ae (diff)
downloadcore-d397cd4d564a5726403f8a2ba10c7f0e5a9792ee.tar.gz
core-d397cd4d564a5726403f8a2ba10c7f0e5a9792ee.tar.xz
readline: prohibit parallel building
we run in the problem desriped at [1], which seems to be a race condition. What happens is that in the install phase libreadline.so.6.3 is rebuild, but _not_ linked against ncurses [1] http://thread.gmane.org/gmane.comp.gnu.readline/485
Diffstat (limited to 'readline')
-rw-r--r--readline/Pkgfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/readline/Pkgfile b/readline/Pkgfile
index 2bdf53f7..e06521b1 100644
--- a/readline/Pkgfile
+++ b/readline/Pkgfile
@@ -13,8 +13,8 @@ build() {
cd $name-${version:0:3}
./configure --prefix=/usr --mandir=/usr/man
- make SHLIB_LIBS=-lncurses
- make DESTDIR=$PKG install
+ make -j1 SHLIB_LIBS=-lncurses
+ make -j1 DESTDIR=$PKG install
install -d $PKG/lib
mv $PKG/usr/lib/lib*.so.* $PKG/lib

Generated by cgit