Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Mar 2013 06:44:07 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r41288 - head/en_US.ISO8859-1/books/porters-handbook
Message-ID:  <201303220644.r2M6i7QH004404@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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/ &amp;&amp; ${COPYTREE_SHARE} . ${EXAMPLESDIR})</programlisting>
+	(cd ${WRKSRC}/examples &amp;&amp; ${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/ &amp;&amp; ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer)</programlisting>
+	(cd ${WRKSRC}/temperatures &amp;&amp; ${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/ &amp;&amp; \
+	(cd ${WRKSRC}/examples &amp;&amp; \
 		${COPYTREE_SHARE} . ${EXAMPLESDIR} "! -name Makefile")</programlisting>
 
 	<para>Note that these macros does not add the installed files



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303220644.r2M6i7QH004404>