--- loncom/build/help_graphics_converter.pl 2002/07/05 16:12:31 1.1 +++ loncom/build/help_graphics_converter.pl 2002/07/19 16:56:23 1.3 @@ -28,15 +28,15 @@ use strict; -my $dirprefix = "/home/httpd/html/adm/help/"; +my $dirprefix = "../html/adm/help/"; # Check that the png directory exists if (not (-d $dirprefix . "png/")) { die "Can't convert help graphics because the png directory is not ". "installed."; } -mkdir $dirprefix . "gif/"; -mkdir $dirprefix . "eps/"; +mkdir $dirprefix . "gif/", 0755; +mkdir $dirprefix . "eps/", 0755; foreach my $file (glob($dirprefix . "png/*.png")) {