svn commit: r41288 - head/en_US.ISO8859-1/books/porters-handbook

Alexey Dokuchaev danfe at FreeBSD.org
Fri Mar 22 06:44:08 UTC 2013


Author: danfe (ports committer)
Date: Fri Mar 22 06:44:07 2013
New Revision: 41288
URL: http://svnweb.freebsd.org/changeset/doc/41288

Log:
  Fix three more bogus usages of trailing slashes.
  
  Approved by:	gjb (implicit, should be part of r41286)

Modified:
  head/en_US.ISO8859-1/books/porters-handbook/book.xml

Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/book.xml	Fri Mar 22 05:23:43 2013	(r41287)
+++ head/en_US.ISO8859-1/books/porters-handbook/book.xml	Fri Mar 22 06:44:07 2013	(r41288)
@@ -4887,7 +4887,7 @@ PORTVERSION=	1.0</programlisting>
 
 	<programlisting>post-install:
 	${MKDIR} ${EXAMPLESDIR}
-	(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR})</programlisting>
+	(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR})</programlisting>
 
 	<para>This example will install the contents of
 	  <filename>examples</filename> directory in the vendor
@@ -4896,7 +4896,7 @@ PORTVERSION=	1.0</programlisting>
 
 	<programlisting>post-install:
 	${MKDIR} ${DATADIR}/summer
-	(cd ${WRKSRC}/temperatures/ && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer)</programlisting>
+	(cd ${WRKSRC}/temperatures && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer)</programlisting>
 
 	<para>And this example will install the data of summer months
 	  to the <filename>summer</filename> subdirectory of a
@@ -4910,7 +4910,7 @@ PORTVERSION=	1.0</programlisting>
 
 	<programlisting>post-install:
 	${MKDIR} ${EXAMPLESDIR}
-	(cd ${WRKSRC}/examples/ && \
+	(cd ${WRKSRC}/examples && \
 		${COPYTREE_SHARE} . ${EXAMPLESDIR} "! -name Makefile")</programlisting>
 
 	<para>Note that these macros does not add the installed files


More information about the svn-doc-all mailing list