summaryrefslogtreecommitdiffstats
path: root/src/auto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-23 12:33:42 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-23 12:33:42 +0100
commitabcbb0e9ad43fc25077e1681528e72ddcbeed300 (patch)
tree7eee7ed7987bae4ae6697accbafdd2bb5218795c /src/auto
parent1dcf55d4f1aa34b6d22001038d43f3e46407fa2e (diff)
patch 8.2.2196: :version output has extra spaces in compile and link commandv8.2.2196
Problem: :version output has extra spaces in compile and link command. Solution: Adjust QUOTESED. (closes #7505)
Diffstat (limited to 'src/auto')
-rwxr-xr-xsrc/auto/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index 0de0ea5b70..f2486e9c4a 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -5006,9 +5006,9 @@ esac
fi
if test "$zOSUnix" = "yes"; then
- QUOTESED="sed -e 's/[\\\\\"]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/'"
+ QUOTESED="sed -e 's/[\\\\\"]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/' -e 's/ */ /g'"
else
- QUOTESED="sed -e 's/[\\\\\"]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/'"
+ QUOTESED="sed -e 's/[\\\\\"]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/' -e 's/ */ /g'"
fi