summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-07-17 16:47:32 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-07-17 16:47:32 +0000
commit761d8dbf2a62e7024fe732ab52d517a1f7263ad6 (patch)
treee374e6fe2b2c03741dd48684ebdc30c03608cb17
parent811b48f27d947e93c43db1c396dd6128aaf61016 (diff)
downloadperl-761d8dbf2a62e7024fe732ab52d517a1f7263ad6.tar.gz
Mac OS X dyld problems: be less destructive.
p4raw-id: //depot/perl@17605
-rw-r--r--pod/perldelta.pod7
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index ff7f63a6bf..3ec74f4ada 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -3465,10 +3465,11 @@ symbols, for example
you probably have an old pre-Perl-5.8.0 installation (or parts of one)
in /Library/Perl (the undefined symbols used to exist in pre-5.8.0 Perls).
It seems that for some reason "make install" doesn't always completely
-overwrite the files in /Library/Perl. You can remove the Perl
-shared library like this:
+overwrite the files in /Library/Perl. You can move the old Perl
+shared library out of the way like this:
- rm /Library/Perl/darwin/CORE/libperl.dylib
+ cd /Library/Perl/darwin/CORE
+ mv libperl.dylib libperlold.dylib
and then reissue "make install". Note that the above of course is
extremely disruptive for anything using the /usr/local/bin/perl.