svn commit: r51113 - head/share/mk

Wolfram Schneider wosch at FreeBSD.org
Thu Oct 12 15:19:46 UTC 2017


Author: wosch
Date: Thu Oct 12 15:19:45 2017
New Revision: 51113
URL: https://svnweb.freebsd.org/changeset/doc/51113

Log:
  improve warning message

Modified:
  head/share/mk/doc.translate.mk

Modified: head/share/mk/doc.translate.mk
==============================================================================
--- head/share/mk/doc.translate.mk	Thu Oct 12 15:05:42 2017	(r51112)
+++ head/share/mk/doc.translate.mk	Thu Oct 12 15:19:45 2017	(r51113)
@@ -43,7 +43,7 @@ MASTER_SRCS!=	${MAKE} -C ${EN_DIR} -V SRCS
 
 ${DOC}.translate.xml:
 .if ${TRAN_DIR} == ${EN_DIR}
-	@${ECHO} "build PO file in a non-English dir, ignored"
+	@${ECHO} "Please build PO file only in a non-English dir, ignored"
 .else
 	# some SRCS files might need to be generated, make sure they exist
 	${MAKE} -C ${EN_DIR} ${MASTER_SRCS} > /dev/null
@@ -82,7 +82,7 @@ ${PO_LANG}.mo:	${PO_LANG}.po
 
 tran ${DOC}.xml:	${DOC}.translate.xml ${PO_LANG}.mo
 .if ${TRAN_DIR} == ${EN_DIR}
-	@${ECHO} "build translation in a non-English dir, ignored"
+	@${ECHO} "Please build translation only in a non-English dir, ignored"
 .else
 	${ITSTOOL} -l ${PO_LANG} -m ${PO_LANG}.mo -o ${DOC}.xml ${DOC}.translate.xml
 .endif


More information about the svn-doc-all mailing list