Commit 706e9e1c authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 138064 - False-positive error message in checksetup.pl when checking for…

Bug 138064 - False-positive error message in checksetup.pl when checking for "png" in data/webdot/.htaccess. Patch by ddk; 2xr=justdave.
parent 509faa04
......@@ -985,6 +985,7 @@ if(-e "data/params") {
}
# Check .htaccess allows access to generated images
if(-e "data/webdot/.htaccess") {
open HTACCESS, "data/webdot/.htaccess";
if(! grep(/png/,<HTACCESS>)) {
print "Dependency graph images are not accessible.\n";
......@@ -992,6 +993,7 @@ if(-e "data/params") {
}
close HTACCESS;
}
}
}
print "\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment