summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson2016-07-26 10:01:47 +0200
committer Willy Sudiarto Raharjo2016-08-13 02:22:55 +0200
commitfa4f13aa42f570a09340d9f171fce8189a1247a4 (patch)
tree58bf5eea66814b9cb775b3712c019c8a0fb680a3
parenta19a05625941715342f731db02e41e557cfe68e4 (diff)
downloadslackbuilds-fa4f13aa42f570a09340d9f171fce8189a1247a4.tar.gz
development/ex-vi: Fix build.
-rw-r--r--development/ex-vi/ex-vi.SlackBuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/development/ex-vi/ex-vi.SlackBuild b/development/ex-vi/ex-vi.SlackBuild
index 48963c40b4..ab85dbb773 100644
--- a/development/ex-vi/ex-vi.SlackBuild
+++ b/development/ex-vi/ex-vi.SlackBuild
@@ -6,6 +6,9 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20160726 bkw: build 3
+# parallel make (-jN where N > 1) fails on Slack 14.2, add -j1
+
# 20150331 bkw: build 2
# Increase TUBE* constants in config.h to allow for larger terminals.
@@ -29,7 +32,7 @@ TUBELINES=${TUBELINES:-200}
# We now return you to your regularly scheduled programming:
PRGNAM=ex-vi
VERSION=${VERSION:-050325}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -88,7 +91,7 @@ sed -i -e "/^#define/s,\\(TUBESIZE *\\).*$,\\1 $(( TUBECOLS * TUBELINES ))," \
# To avoid conflicts with Slackware's elvis and/or vim, we install to /opt and
# include a login script to set PATH and MANPATH.
-make all install \
+make -j1 all install \
CC="gcc $SLKCFLAGS" \
MANDIR=/opt/$PRGNAM/man \
PREFIX=/opt/$PRGNAM \