diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-12 11:57:25 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-12 11:57:25 +0000 |
commit | e2adcf397421d47440d135a97765e1dbe7f824fe (patch) | |
tree | 62e54238c6a23b2f932fc9dd4e3c071219cc4bf7 /src/configure.ac | |
parent | fb43cfc2c6a003b850343bfd27cb3059c734d7d4 (diff) | |
download | vim-git-e2adcf397421d47440d135a97765e1dbe7f824fe.tar.gz |
patch 8.2.4549: cannot build with Motif and editresv8.2.4549
Problem: Cannot build with Motif and editres. (Tony Mechelynck)
Solution: Fix configure mistake.
Diffstat (limited to 'src/configure.ac')
-rw-r--r-- | src/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.ac b/src/configure.ac index ff4a49008..1426e74c5 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -3004,7 +3004,7 @@ if test -z "$SKIP_MOTIF"; then AC_SUBST(MOTIF_LIBNAME) fi -if -z "$SKIP_MOTIF"; then +if test -z "$SKIP_MOTIF"; then dnl Prepend -I and -L to $GUI_INC_LOC and $GUI_LIB_LOC if not empty dnl Avoid adding it when it twice if test -n "$GUI_INC_LOC"; then |