summaryrefslogtreecommitdiffstats
path: root/runtime/lang
diff options
context:
space:
mode:
authorRestorer <69863286+RestorerZ@users.noreply.github.com>2023-11-25 14:39:51 +0000
committerGitHub <noreply@github.com>2023-11-25 15:39:51 +0100
commit8c14e79737c5df5cd111f60e7bda46cb0b9d89f7 (patch)
tree12058437237d14b39f21cf3d56e2ce554a05ad54 /runtime/lang
parent813a538bb3cec2eee4bf43e16b44fe40666529ef (diff)
runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/lang')
-rw-r--r--runtime/lang/Make_mvc.mak7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/lang/Make_mvc.mak b/runtime/lang/Make_mvc.mak
index f5752832e9..ced72cdfd7 100644
--- a/runtime/lang/Make_mvc.mak
+++ b/runtime/lang/Make_mvc.mak
@@ -10,7 +10,8 @@
# Common components
!INCLUDE Make_all.mak
-# Correct the following line for the directory where iconv is installed
+# Correct the following line for the directory where iconv is installed.
+# Please do not put the path in quotes.
ICONV_PATH = D:\Programs\GetText\bin
# In case some package like GnuWin32, UnixUtils, gettext
@@ -18,9 +19,9 @@ ICONV_PATH = D:\Programs\GetText\bin
# If the "iconv" program is installed on the system, but it is not registered
# in the %PATH% environment variable, then specify the full path to this file.
!IF EXIST ("iconv.exe")
-ICONV = iconv.exe
+ICONV = "iconv.exe"
!ELSEIF EXIST ("$(ICONV_PATH)\iconv.exe")
-ICONV="$(ICONV_PATH)\iconv.exe"
+ICONV = "$(ICONV_PATH)\iconv.exe"
!ENDIF
RM = del /q