bug-gettext
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] build: Use $(PATH_SEPARATOR) as a path separator


From: KO Myung-Hun
Subject: [PATCH] build: Use $(PATH_SEPARATOR) as a path separator
Date: Wed, 18 Oct 2023 23:32:44 +0900

':' is not a path separator on OS/2.

* gettext-tools/examples/po/Makefile.am (USE_BUILT_PROGS): Use
$(PATH_SEPARATOR) instead of ':'.
---
 gettext-tools/examples/po/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gettext-tools/examples/po/Makefile.am 
b/gettext-tools/examples/po/Makefile.am
index bf2027fa4..23a35de41 100644
--- a/gettext-tools/examples/po/Makefile.am
+++ b/gettext-tools/examples/po/Makefile.am
@@ -237,7 +237,7 @@ $(DOMAIN).pot-update: $(POTFILES_DEPS) $(SMALLPOTS) 
remove-potcdate.sed
 # The environment variable 'gettext_datadir' is used by autopoint.
 # The environment variable 'GETTEXTDATADIR' is used by xgettext.
 USE_BUILT_PROGS = \
-  PATH="`pwd`/../../src:`pwd`/../../misc:$$PATH"; \
+  
PATH="`pwd`/../../src$(PATH_SEPARATOR)`pwd`/../../misc$(PATH_SEPARATOR)$$PATH"; 
\
   gettext_datadir="`pwd`/../../misc"; export gettext_datadir; \
   GETTEXTDATADIR="`cd '$(srcdir)/../..' && pwd`"; export GETTEXTDATADIR;
 
-- 
2.42.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]