From d6c34d9250153470367b74abcf42ad4db12fc217 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 21 Jul 2007 13:01:12 +0000 Subject: Why does getcache return "true" or undef?! Now returns 1 or 0. Thanks stskeeps git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7482 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index db6602bae..67e5b7aab 100755 --- a/configure +++ b/configure @@ -397,7 +397,7 @@ sub svnupdate print "Running non-interactive configure...\n" unless $interactive; print "Checking for cache from previous configure... "; -print ((getcache() eq "true") ? "found\n" : "not found\n"); +print ((!getcache()) ? "not found\n" : "found\n"); print "Checking operating system version... "; print getosflags() . "\n"; @@ -840,7 +840,7 @@ FOO2 ################################################################################ sub getcache { # Retrieves the .config.cache file, and loads values into the main config hash. - open(CACHE, ".config.cache") or return undef; + open(CACHE, ".config.cache") or return 0; while () { chomp; # Ignore Blank lines, and comments.. @@ -852,7 +852,7 @@ sub getcache { $config{$key} = $1; } close(CONFIG); - return "true"; + return 1; } sub makecache { -- cgit v1.2.3