diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-18 21:41:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-18 21:41:09 +0200 |
commit | 6323508e5e861218da88c3c6747a360f396f5c8f (patch) | |
tree | bdb57036b8966976cae7945ccb82d9594700320c /src | |
parent | 4a9b19ace80d218ca85e4e10a32ed8d0135a48a5 (diff) | |
download | vim-git-6323508e5e861218da88c3c6747a360f396f5c8f.tar.gz |
Change wording in link.sh: "remove" -> "omit"
Diffstat (limited to 'src')
-rwxr-xr-x | src/link.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/link.sh b/src/link.sh index dc376d521..6e161684c 100755 --- a/src/link.sh +++ b/src/link.sh @@ -46,7 +46,7 @@ else while test -n "$cont"; do if grep "l$libname " linkit.sh >/dev/null; then if test ! -f link1.sed; then - echo "link.sh: OK, linking works, let's try removing a few libraries." + echo "link.sh: OK, linking works, let's try omitting a few libraries." echo "link.sh: See auto/link.log for details." rm -f auto/link.log fi @@ -55,16 +55,16 @@ else sed -f link1.sed <linkit2.sh >linkit.sh # keep the last -lm if test $libname != "m" || grep "lm " linkit.sh >/dev/null; then - echo "link.sh: Trying to remove the $libname library..." + echo "link.sh: Trying to omit the $libname library..." cat linkit.sh >>auto/link.log # Redirect this link output, it may contain error messages which # should be ignored. if sh linkit.sh >>auto/link.log 2>&1; then - echo "link.sh: We don't need the $libname library!" + echo "link.sh: Vim doesn't need the $libname library!" cat link1.sed >>auto/link.sed rm -f auto/pathdef.c else - echo "link.sh: We DO need the $libname library." + echo "link.sh: Vim DOES need the $libname library." cont= cp link.cmd linkit.sh fi @@ -82,7 +82,7 @@ else $MAKE objects/pathdef.o fi if test ! -f link1.sed; then - echo "link.sh: Linked fine, no libraries can be removed" + echo "link.sh: Linked fine, no libraries can be omitted" touch link3.sed fi else @@ -94,12 +94,12 @@ fi # Now do the real linking. # if test -s auto/link.sed; then - echo "link.sh: Using auto/link.sed file to remove a few libraries" + echo "link.sh: Using auto/link.sed file to omit a few libraries" sed -f auto/link.sed <link.cmd >linkit.sh cat linkit.sh if sh linkit.sh; then exit_value=0 - echo "link.sh: Linked fine with a few libraries removed" + echo "link.sh: Linked fine with a few libraries omitted" else exit_value=$? echo "link.sh: Linking failed, making auto/link.sed empty and trying again" |