summaryrefslogtreecommitdiffstats
path: root/install-win32/dosname.pl
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/dosname.pl')
-rw-r--r--install-win32/dosname.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/install-win32/dosname.pl b/install-win32/dosname.pl
index 5bfa6b9..a678e66 100644
--- a/install-win32/dosname.pl
+++ b/install-win32/dosname.pl
@@ -1,5 +1,7 @@
#!/usr/bin/perl
+# convert a unix filename to a DOS filename
+
while ($unixname = shift(@ARGV)) {
$unixname =~ s#^/([a-zA-Z])(/|$)#$1:\\#g;
$unixname =~ s#/#\\#g;