development/ex-vi: Fix build.
This commit is contained in:
parent
a19a056259
commit
fa4f13aa42
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue