aggregate.pm: Replace Unicode apostrophe with ASCII to unbreak build

gettext choked on a Unicode apostrophe in the aggregate plugin, which
appeared in a new error message in commit
4f872b5633.  Replace it with an ASCII
apostrophe.
master
Josh Triplett 2008-01-26 23:12:29 -08:00
parent a93652df9d
commit fafb2edaa7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ sub checkconfig () { #{{{
# The parent process will then handle building the result.
# This avoids messy code to clear state accumulated while
# aggregating.
defined(my $pid = fork) or error("Cant fork: $!");
defined(my $pid = fork) or error("Can't fork: $!");
if (! $pid) {
loadstate();
IkiWiki::loadindex();