summaryrefslogtreecommitdiff
path: root/Master/source/tlperl/Config.pm.diff
blob: 79f9642cb7a723c34a680421012ef3eba7ce0f82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- Config.pm.orig	2021-02-23 21:23:58.000000000 +0100
+++ Config.pm	2021-02-25 16:10:06.000000000 +0100
@@ -82,9 +82,14 @@
     die "&Config::AUTOLOAD failed on $Config::AUTOLOAD";
 }
 
+my $rootdir = __FILE__;
+$rootdir =~ s![\\/][^\\/]*[\\/][^\\/]*$!!;
+$rootdir =~ s!/!\\!g;
+my $mingdir = "E:\\wprogs\\mingw2021";
+
 # tie returns the object, so the value returned to require will be true.
 tie %Config, 'Config', {
-    archlibexp => 'e:\\tlperl\\lib',
+    archlibexp => "$rootdir\\lib",
     archname => 'MSWin32-x86-multi-thread',
     cc => 'gcc',
     d_readlink => undef,
@@ -96,14 +101,14 @@
     inc_version_list => '',
     intsize => '4',
     ldlibpthname => '',
-    libpth => 'E:\\wprogs\\mingw2021\\lib',
+    libpth => "$mingdir\\lib",
     osname => 'MSWin32',
     osvers => '10.0.19042.804',
     path_sep => ';',
-    privlibexp => 'e:\\tlperl\\lib',
-    scriptdir => 'e:\\tlperl\\bin',
-    sitearchexp => 'e:\\tlperl\\site\\lib',
-    sitelibexp => 'e:\\tlperl\\site\\lib',
+    privlibexp => "$rootdir\\lib",
+    scriptdir => "$rootdir\\bin",
+    sitearchexp => "$rootdir\\site\\lib",
+    sitelibexp => "$rootdir\\site\\lib",
     so => 'dll',
     useithreads => 'define',
     usevendorprefix => undef,