diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-01 07:43:02 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-01 07:43:02 +0000 |
commit | e5a95ffba7bb8798f8211d43c45c423a80fd0fa5 (patch) | |
tree | 11fb48d1a485b304f3e8a91183a00e39ffe10d36 /win32/runperl.c | |
parent | 9b89d93d5855d0edff8da7afe2143583c17c017d (diff) | |
download | perl-e5a95ffba7bb8798f8211d43c45c423a80fd0fa5.tar.gz |
[win32] @INC construction on win32 cleaned up
- perl.dll location based paths should be much more reliable now
- registry stuff unchanged
- Config.pm now has all the installfoolib entries for MakeMaker et al
p4raw-id: //depot/win32/perl@1069
Diffstat (limited to 'win32/runperl.c')
-rw-r--r-- | win32/runperl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/runperl.c b/win32/runperl.c index 9f2e5c170d..36461bdc9e 100644 --- a/win32/runperl.c +++ b/win32/runperl.c @@ -72,7 +72,7 @@ public: }; -extern char * g_win32_get_stdlib(char *pl); +extern char * g_win32_get_privlib(char *pl); extern char * g_win32_get_sitelib(char *pl); class CPerlEnv : public IPerlEnv { @@ -88,7 +88,7 @@ public: }; virtual char* LibPath(char *pl) { - return g_win32_get_stdlib(pl); + return g_win32_get_privlib(pl); }; virtual char* SiteLibPath(char *pl) { |