annotate src/pathdef.sh @ 18410:b5b2e3b824c2 v8.1.2199

patch 8.1.2199: build failure when using normal features without GUI Commit: https://github.com/vim/vim/commit/a720be78d7978b3b853ff6c8af0d1721d6225378 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 22 21:45:19 2019 +0200 patch 8.1.2199: build failure when using normal features without GUI Problem: Build failure when using normal features without GUI and EXITFREE defined. Solution: Add #ifdef. (Dominique Pelle, closes #5106)
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Oct 2019 22:00:04 +0200
parents 3fc0f57ecb91
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 #! /bin/sh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 # pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 if test -s auto/link.sed; then
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 cp auto/pathdef.c auto/pathdef.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 rm -f auto/pathdef.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 fi
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 # vim:set sw=2 et: