diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-10-09 04:49:06 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-10-09 04:49:06 +0000 |
commit | 453a1e5f6e2a2415bf635b4da3be52b544b6d843 (patch) | |
tree | e0645d932801fbd5898fee0b2baf5a1c59533732 /Porting | |
parent | ac5e36916bf9bff6ce2594ce0b6db3ecde427ff6 (diff) | |
download | perl-453a1e5f6e2a2415bf635b4da3be52b544b6d843.tar.gz |
Try #3 for Porting/pumpkin.pod APPLLIB_EXP quoting
Tue, 8 Oct 2002; Andy Dougherty <doughera@lafayette.edu>
p4raw-id: //depot/perl@17981
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/pumpkin.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Porting/pumpkin.pod b/Porting/pumpkin.pod index 898022b19c..d0c37f745f 100644 --- a/Porting/pumpkin.pod +++ b/Porting/pumpkin.pod @@ -1261,11 +1261,11 @@ a mail message from Larry: Given that it's already there, you can use it to override distribution modules. One way to do that is to add - ccflags="$ccflags -DAPPLLIB_EXP='"/my/override"'" + ccflags="$ccflags -DAPPLLIB_EXP=\"/my/override\"" to your config.over file. (You have to be particularly careful to get the -double quotes in. It might actually be easier to just #define it -yourself in perl.c.) +double quotes in. APPLLIB_EXP must be a valid C string. It might +actually be easier to just #define it yourself in perl.c.) Then perl.c will put /my/override ahead of ARCHLIB and PRIVLIB. Perl will also search architecture-specific and version-specific subdirectories of |