pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/doc
Module Name: pkgsrc
Committed By: yyamano
Date: Thu Dec 8 00:44:40 UTC 2016
Modified Files:
pkgsrc/doc: pkgsrc.html pkgsrc.txt
pkgsrc/doc/guide/files: makefile.xml
Log Message:
Fix typo.
To generate a diff of this commit:
cvs rdiff -u -r1.227 -r1.228 pkgsrc/doc/pkgsrc.html pkgsrc/doc/pkgsrc.txt
cvs rdiff -u -r1.26 -r1.27 pkgsrc/doc/guide/files/makefile.xml
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/doc/pkgsrc.html
diff -u pkgsrc/doc/pkgsrc.html:1.227 pkgsrc/doc/pkgsrc.html:1.228
--- pkgsrc/doc/pkgsrc.html:1.227 Tue Nov 15 13:51:07 2016
+++ pkgsrc/doc/pkgsrc.html Thu Dec 8 00:44:39 2016
@@ -197,7 +197,7 @@ builds)</a></span></dt>
<dt><span class="sect1"><a href="#makefile.code">12.3. Code snippets</a></span></dt>
<dd><dl>
<dt><span class="sect2"><a href="#adding-to-list">12.3.1. Adding things to a list</a></span></dt>
-<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exacty as-is</a></span></dt>
+<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exactly as-is</a></span></dt>
<dt><span class="sect2"><a href="#cflags-gnu-configure">12.3.3. Passing <code class="varname">CFLAGS</code> to GNU configure scripts</a></span></dt>
<dt><span class="sect2"><a href="#empty-variables">12.3.4. Handling possibly empty variables</a></span></dt>
</dl></dd>
@@ -2811,7 +2811,7 @@ anymore, you can remove that file and ru
<dt><span class="sect1"><a href="#makefile.code">12.3. Code snippets</a></span></dt>
<dd><dl>
<dt><span class="sect2"><a href="#adding-to-list">12.3.1. Adding things to a list</a></span></dt>
-<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exacty as-is</a></span></dt>
+<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exactly as-is</a></span></dt>
<dt><span class="sect2"><a href="#cflags-gnu-configure">12.3.3. Passing <code class="varname">CFLAGS</code> to GNU configure scripts</a></span></dt>
<dt><span class="sect2"><a href="#empty-variables">12.3.4. Handling possibly empty variables</a></span></dt>
</dl></dd>
@@ -4014,7 +4014,7 @@ FILESDIR=${.CURDIR}/../xemacs/files
<dt><span class="sect1"><a href="#makefile.code">12.3. Code snippets</a></span></dt>
<dd><dl>
<dt><span class="sect2"><a href="#adding-to-list">12.3.1. Adding things to a list</a></span></dt>
-<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exacty as-is</a></span></dt>
+<dt><span class="sect2"><a href="#echo-literal">12.3.2. Echoing a string exactly as-is</a></span></dt>
<dt><span class="sect2"><a href="#cflags-gnu-configure">12.3.3. Passing <code class="varname">CFLAGS</code> to GNU configure scripts</a></span></dt>
<dt><span class="sect2"><a href="#empty-variables">12.3.4. Handling possibly empty variables</a></span></dt>
</dl></dd>
@@ -4154,7 +4154,7 @@ LIST+= ${ANOTHER_LIST} # 2
</div>
<div class="sect2">
<div class="titlepage"><div><div><h3 class="title">
-<a name="echo-literal"></a>12.3.2.�Echoing a string exacty as-is</h3></div></div></div>
+<a name="echo-literal"></a>12.3.2.�Echoing a string exactly as-is</h3></div></div></div>
<p>Echoing a string containing special characters needs special
work.</p>
<pre class="programlisting">
Index: pkgsrc/doc/pkgsrc.txt
diff -u pkgsrc/doc/pkgsrc.txt:1.227 pkgsrc/doc/pkgsrc.txt:1.228
--- pkgsrc/doc/pkgsrc.txt:1.227 Tue Nov 15 13:51:07 2016
+++ pkgsrc/doc/pkgsrc.txt Thu Dec 8 00:44:39 2016
@@ -184,7 +184,7 @@ II. The pkgsrc developer's guide
12.3. Code snippets
12.3.1. Adding things to a list
- 12.3.2. Echoing a string exacty as-is
+ 12.3.2. Echoing a string exactly as-is
12.3.3. Passing CFLAGS to GNU configure scripts
12.3.4. Handling possibly empty variables
@@ -2399,7 +2399,7 @@ Table of Contents
12.3. Code snippets
12.3.1. Adding things to a list
- 12.3.2. Echoing a string exacty as-is
+ 12.3.2. Echoing a string exactly as-is
12.3.3. Passing CFLAGS to GNU configure scripts
12.3.4. Handling possibly empty variables
@@ -3384,7 +3384,7 @@ Table of Contents
12.3. Code snippets
12.3.1. Adding things to a list
- 12.3.2. Echoing a string exacty as-is
+ 12.3.2. Echoing a string exactly as-is
12.3.3. Passing CFLAGS to GNU configure scripts
12.3.4. Handling possibly empty variables
@@ -3500,7 +3500,7 @@ ANOTHER_LIST= a=b c=d
LIST+= ${STRING:Q} # 1
LIST+= ${ANOTHER_LIST} # 2
-12.3.2. Echoing a string exacty as-is
+12.3.2. Echoing a string exactly as-is
Echoing a string containing special characters needs special work.
Index: pkgsrc/doc/guide/files/makefile.xml
diff -u pkgsrc/doc/guide/files/makefile.xml:1.26 pkgsrc/doc/guide/files/makefile.xml:1.27
--- pkgsrc/doc/guide/files/makefile.xml:1.26 Sat Jun 11 19:54:44 2016
+++ pkgsrc/doc/guide/files/makefile.xml Thu Dec 8 00:44:40 2016
@@ -1,4 +1,4 @@
-<!-- $NetBSD: makefile.xml,v 1.26 2016/06/11 19:54:44 rillig Exp $ -->
+<!-- $NetBSD: makefile.xml,v 1.27 2016/12/08 00:44:40 yyamano Exp $ -->
<chapter id="makefile"> <?dbhtml filename="makefile.html"?>
<title>Programming in <filename>Makefile</filename>s</title>
@@ -164,7 +164,7 @@ LIST+= ${ANOTHER_LIST} # 2
</sect2>
<sect2 id="echo-literal">
-<title>Echoing a string exacty as-is</title>
+<title>Echoing a string exactly as-is</title>
<para>Echoing a string containing special characters needs special
work.</para>
Home |
Main Index |
Thread Index |
Old Index