diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-25 22:58:21 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-25 22:58:21 +0000 |
commit | 52d84f6eaf811749c965d1634f781c9f7c12d5eb (patch) | |
tree | f12efcc7600c7b192cc74662d13ccd7a11ba9e81 /install-win32/dosname.pl | |
parent | TAP driver now passes signing tests on Vista x64. (diff) | |
download | openvpn-52d84f6eaf811749c965d1634f781c9f7c12d5eb.tar.xz |
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 '')
-rw-r--r-- | install-win32/dosname.pl | 2 |
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; |