Fix three more bogus usages of trailing slashes.
Approved by: gjb (implicit, should be part of r41286)
This commit is contained in:
parent
799c07890c
commit
c7757fb822
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=41288
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue