[svn:perlfaq] r11634 - perlfaq/trunk
[email protected] Wed, 6 Aug 2008 05:22:28 -0700 (PDT)
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
Author: comdog
Date: Wed Aug 6 05:22:28 2008
New Revision: 11634
Modified:
perlfaq/trunk/Makefile
perlfaq/trunk/perlfaq5.pod
Log:
* perlfaq5: All I want to do is append a small amount of text to the end of a file. Do I still have to use locking?
+ typo fix
* Makefile
+ references to CVS are now references to SVN
Modified: perlfaq/trunk/Makefile
==============================================================================
--- perlfaq/trunk/Makefile (original)
+++ perlfaq/trunk/Makefile Wed Aug 6 05:22:28 2008
@@ -1,6 +1,6 @@
# $Id$
PERL=perl
-CVS=cvs
+SVN=svn
CHECK_URLS=bin/check_urls.pl
TOC_PL=bin/perlfaq_toc.pl
@@ -30,13 +30,13 @@
@ touch $@
split:
-# ${CVS} update -d
+ ${SVN} update
${PERL} bin/splitfaq ${SPLIT_DIR} ${FILES}
rm -f ${SPLIT_DIR}/perlfaq.00.00.txt
bin/touch ${SPLIT_DIR}/*
splitquiet:
- @ ${CVS} update -d
+ @ ${SVN} update
@ ${PERL} bin/splitfaq -q ${SPLIT_DIR} ${FILES}
@ rm -f ${SPLIT_DIR}/perlfaq.00.00.txt
@ bin/touch ${SPLIT_DIR}/*
Modified: perlfaq/trunk/perlfaq5.pod
==============================================================================
--- perlfaq/trunk/perlfaq5.pod (original)
+++ perlfaq/trunk/perlfaq5.pod Wed Aug 6 05:22:28 2008
@@ -877,7 +877,7 @@
flushing of the buffer then each bufferload is almost guaranteed to be
written to the end of the file in one chunk without getting
intermingled with anyone else's output. You can also use the
-C<syswrite> function which is simply a wrapper around your systems
+C<syswrite> function which is simply a wrapper around your system's
C<write(2)> system call.
There is still a small theoretical chance that a signal will interrupt