summaryrefslogtreecommitdiffstats
path: root/install-win32/dosname.pl
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-04-25 22:58:21 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-04-25 22:58:21 +0000
commit52d84f6eaf811749c965d1634f781c9f7c12d5eb (patch)
treef12efcc7600c7b192cc74662d13ccd7a11ba9e81 /install-win32/dosname.pl
parent657ecf14acc58a6d345341a5e36411bde5be9cd9 (diff)
downloadopenvpn-52d84f6eaf811749c965d1634f781c9f7c12d5eb.tar.gz
openvpn-52d84f6eaf811749c965d1634f781c9f7c12d5eb.tar.xz
openvpn-52d84f6eaf811749c965d1634f781c9f7c12d5eb.zip
misc Windows build system changes
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1875 e7ae566f-a301-0410-adde-c780ea21d3b5
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;