Complete lack of any consistent indenting SERIOUSLY ftl.

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3137 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-02-08 10:49:10 +00:00
parent 62fda57bdc
commit c629bce35e

4
configure vendored
View File

@ -724,7 +724,9 @@ sub dir_check {
print "In what directory $desc?\n";
print "[\033[1;32m$config{$hash_key}\033[0m] -> ";
chomp($var = <STDIN>);
if ($var eq "") { $var = $config{$hash_key}; }
if ($var eq "") {
$var = $config{$hash_key};
}
if ($var =~ /^\~\/(.+)$/) {
# Convert it to a full path..
$var = resolve_directory($ENV{HOME} . "/" . $1);