diff options
author | mbr <mbr@FreeBSD.org> | 2003-02-07 09:15:06 +0000 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-02-07 09:15:06 +0000 |
commit | 87d67c8109e59ea2a2ee635056aa302e36cdf1b1 (patch) | |
tree | bd8fa1667514ea87ca0d4bfd647433221444b10c /www/mod_frontpage | |
parent | f623c41860e6ecc69fff9263faa42f964783ca9d (diff) | |
download | FreeBSD-ports-87d67c8109e59ea2a2ee635056aa302e36cdf1b1.zip FreeBSD-ports-87d67c8109e59ea2a2ee635056aa302e36cdf1b1.tar.gz |
Print the unresolved document root too, to find out
why this path is empty on bento.
Diffstat (limited to 'www/mod_frontpage')
-rw-r--r-- | www/mod_frontpage/files/patch-Makefile.PL | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/mod_frontpage/files/patch-Makefile.PL b/www/mod_frontpage/files/patch-Makefile.PL index 04b9546..5742d33 100644 --- a/www/mod_frontpage/files/patch-Makefile.PL +++ b/www/mod_frontpage/files/patch-Makefile.PL @@ -38,13 +38,14 @@ print "If you don't know, enter the word 'findit'. I will try to look\n"; print "for you... but it will take a few minutes.\n"; print "Your choice: "; -@@ -109,20 +127,27 @@ +@@ -109,20 +127,28 @@ $errorlog="$serverroot/$errorlog"; print "$errorlog\n"; } -print "DocumentRoot: $documentroot\n"; +$documentroot =~ s/"$//; +$documentroot =~ s/^"//; ++print "DocumentRoot_unresolved: ($documentroot)\n"; +$documentroot = realpath($documentroot); +print "DocumentRoot: ($documentroot)\n"; |