# HG changeset patch # User Rik # Date 1299173344 28800 # Node ID 1536ed54621982023931693a0e7fb492c6102dd1 # Parent 245b5efb07c2b1b9cf395441d6291ea2fd2d36cc Fix bug #32443 preventing 'pkg install' on Windows platforms. diff -r 245b5efb07c2 -r 1536ed546219 scripts/ChangeLog --- a/scripts/ChangeLog Thu Mar 03 14:04:19 2011 +0100 +++ b/scripts/ChangeLog Thu Mar 03 09:29:04 2011 -0800 @@ -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 -r 245b5efb07c2 -r 1536ed546219 scripts/miscellaneous/movefile.m --- a/scripts/miscellaneous/movefile.m Thu Mar 03 14:04:19 2011 +0100 +++ b/scripts/miscellaneous/movefile.m Thu Mar 03 09:29:04 2011 -0800 @@ -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