diff options
Diffstat (limited to 'wintools')
-rwxr-xr-x | wintools/make.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wintools/make.pl b/wintools/make.pl index e34fc2a..737f1ee 100755 --- a/wintools/make.pl +++ b/wintools/make.pl @@ -11,6 +11,8 @@ use Cwd; # get current working directory $pwd=cwd(); +# work-around slashes problems for badly ported perl interpreters +$pwd=~s{/}{\\}g; # create config file open(FILE,">makeconfig") || die "Cannot create file makeconfig!"; |