# HG changeset patch # User Rik # Date 1299173344 28800 # Node ID 1536ed54621982023931693a0e7fb492c6102dd1 # Parent 245b5efb07c2b1b9cf395441d6291ea2fd2d36cc Fix bug #32443 preventing 'pkg install' on Windows platforms. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2010-03-03 Rik + + * miscellaneous/movefile.m: Fix copy&paste bug affecting Windows + platform. (bug #32443) + 2010-03-02 Rik * statistics/distributions/unidcdf.m, diff --git a/scripts/miscellaneous/movefile.m b/scripts/miscellaneous/movefile.m --- a/scripts/miscellaneous/movefile.m +++ b/scripts/miscellaneous/movefile.m @@ -110,7 +110,7 @@ endwhile else if (ispc () && ! isunix () - && ! isempty (file_in_path (getenv_path ("PATH"), "cp.exe"))) + && ! isempty (file_in_path (getenv ("PATH"), "cp.exe"))) p1 = strrep (p1, "\\", "/"); p2 = strrep (p2, "\\", "/"); endif