summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avar@cpan.org>2011-02-20 02:00:29 +0000
committerÆvar Arnfjörð Bjarmason <avar@cpan.org>2011-02-20 14:05:35 +0000
commit16c60e4ea4e57610872ef0ea6ec5187b45512382 (patch)
treec8bd548bfd419257b29498b87e9dab0dadedb8b1
parent3dbfcde0b79051f2d3ccc77e918dd52dd7de66b0 (diff)
downloadperl-16c60e4ea4e57610872ef0ea6ec5187b45512382.tar.gz
Porting/release_managers_guide.pod: remove needless Win32 special case
Instead of mentioning that the user can run a commant with '' on Unix and "" on Windows just give everyone the example with "" quotes. It works fine on Unix as well.
-rw-r--r--Porting/release_managers_guide.pod10
1 files changed, 4 insertions, 6 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod
index 0aa2ff7d88..8d69a8c79e 100644
--- a/Porting/release_managers_guide.pod
+++ b/Porting/release_managers_guide.pod
@@ -697,10 +697,10 @@ previous is 5.10.0:
Bootstrap the CPAN client on the clean install:
- $ bin/perl -MCPAN -e'shell'
+ $ bin/perl -MCPAN -e "shell"
-(Use C<... -e "shell"> instead on Win32. You probably also need a set of
-Unix command-line tools available for CPAN to function correctly without
+If you're running this on Win32 you probably also need a set of Unix
+command-line tools available for CPAN to function correctly without
Perl alternatives like LWP installed. Cygwin is an obvious choice.)
=item *
@@ -713,12 +713,10 @@ has dependencies; for example:
Check that your perl can run this:
- $ bin/perl -lwe 'use Inline C => "int f() { return 42;} "; print f'
+ $ bin/perl -lwe "use Inline C => q[int f() { return 42;}]; print f"
42
$
-(Use C<... -lwe "use ..."> instead on Win32.)
-
=item *
Bootstrap the CPANPLUS client on the clean install: