make.po 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. # SOME DESCRIPTIVE TITLE
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "POT-Creation-Date: 2020-06-17 12:44+0800\n"
  11. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  12. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "Language: \n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #. type: Content of: <sect1><sect1info><address>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:13
  20. #, no-wrap
  21. msgid "&make-url;"
  22. msgstr ""
  23. #. type: Content of: <sect1><sect1info>
  24. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:11
  25. msgid ""
  26. "<productname>make</productname> "
  27. "<productnumber>&make-version;</productnumber> <placeholder type=\"address\" "
  28. "id=\"0\"/>"
  29. msgstr ""
  30. #. type: Content of: <sect1><title>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:16
  32. msgid "Make-&make-version;"
  33. msgstr ""
  34. #. type: Content of: <sect1><indexterm><primary>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:19
  36. msgid "Make"
  37. msgstr ""
  38. #. type: Content of: <sect1><indexterm><secondary>
  39. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:20
  40. msgid "tools"
  41. msgstr ""
  42. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  43. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:31
  44. msgid "&buildtime;"
  45. msgstr ""
  46. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  47. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:32
  48. msgid "&diskspace;"
  49. msgstr ""
  50. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:35
  52. msgid "&make-tmp-sbu;"
  53. msgstr ""
  54. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  55. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:36
  56. msgid "&make-tmp-du;"
  57. msgstr ""
  58. #. type: Content of: <sect1><sect2><title>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:43
  60. msgid "Installation of Make"
  61. msgstr ""
  62. #. type: Content of: <sect1><sect2><para>
  63. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:45
  64. msgid "Prepare Make for compilation:"
  65. msgstr ""
  66. #. type: Content of: <sect1><sect2><screen>
  67. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:47
  68. #, no-wrap
  69. msgid ""
  70. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  71. " --without-guile \\\n"
  72. " --host=$LFS_TGT \\\n"
  73. " --build=$(build-aux/config.guess)</userinput>"
  74. msgstr ""
  75. #. type: Content of: <sect1><sect2><variablelist><title>
  76. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:53
  77. msgid "The meaning of the new configure option:"
  78. msgstr ""
  79. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  80. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:56
  81. msgid "<parameter>--without-guile</parameter>"
  82. msgstr ""
  83. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  84. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:58
  85. msgid ""
  86. "Although we are cross-compiling, configure tries to use guile from the build "
  87. "host if it finds it. This makes compilation fail, so this switch prevents "
  88. "using it."
  89. msgstr ""
  90. #. type: Content of: <sect1><sect2><para>
  91. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:65
  92. msgid "Compile the package:"
  93. msgstr ""
  94. #. type: Content of: <sect1><sect2><screen>
  95. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:67
  96. #, no-wrap
  97. msgid "<userinput remap=\"make\">make</userinput>"
  98. msgstr ""
  99. #. type: Content of: <sect1><sect2><para>
  100. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:69
  101. msgid "Install the package:"
  102. msgstr ""
  103. #. type: Content of: <sect1><sect2><screen>
  104. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:71
  105. #, no-wrap
  106. msgid "<userinput remap=\"install\">make DESTDIR=$LFS install</userinput>"
  107. msgstr ""
  108. #. type: Content of: <sect1><sect2><para>
  109. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:78
  110. msgid ""
  111. "Details on this package are located in <xref linkend=\"contents-make\" "
  112. "role=\".\"/>"
  113. msgstr ""