From 623d4c078a661b1ff3eca4a26651406ccf1f1d76 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Sun, 18 Sep 2016 20:23:23 -0400 Subject: [PATCH] dist/distrib: generate vi.0 The file is absent from the repository, not generated with "make", but attempted to be installed with "make install". An alternative to changing directories directly would be to use "make -C", but "make -C" is not POSIX. Is is present on Linux and BSDs, but not on Solaris, for example. Signed-off-by: Felix Janda Signed-off-by: Sven Verdoolaege --- dist/distrib | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/distrib b/dist/distrib index 953eceb8..4c57f10d 100755 --- a/dist/distrib +++ b/dist/distrib @@ -81,6 +81,12 @@ ctags $ctagsopt -w \ ../tcl_api/*.[ch] ../vi/*.[ch] chmod 444 $f +# Build vi.0 +echo "Building vi.0" +cd ../docs/vi.man +make vi.0 +cd "$OLDPWD" + date=`date +%Y-%m-%d` echo "Building ../ex/version.h" echo '#define VI_VERSION "'`git-describe` '('$date')"' > ../ex/version.h -- 2.11.4.GIT