diff options
author | B. Watson <yalhcru@gmail.com> | 2016-07-26 04:01:47 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-08-13 07:22:55 +0700 |
commit | fa4f13aa42f570a09340d9f171fce8189a1247a4 (patch) | |
tree | 58bf5eea66814b9cb775b3712c019c8a0fb680a3 /development | |
parent | a19a05625941715342f731db02e41e557cfe68e4 (diff) |
development/ex-vi: Fix build.
Diffstat (limited to 'development')
-rw-r--r-- | development/ex-vi/ex-vi.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/development/ex-vi/ex-vi.SlackBuild b/development/ex-vi/ex-vi.SlackBuild index 48963c40b414..ab85dbb77364 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 \ |