From f5cffcc1fccf0f2f45f67513b39bede46ed7e686 Mon Sep 17 00:00:00 2001 From: truelight Date: Mon, 19 Feb 2007 16:10:18 +0000 Subject: (svn r8810) [Configure] -Fix: "" variables if you test them, else if they are empty they return lovely errors (tnx to Celester for finding thisone ;)) --- config.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.lib b/config.lib index 5a18f27ee..85b8e0358 100644 --- a/config.lib +++ b/config.lib @@ -1140,7 +1140,7 @@ check_makedepend() { } detect_os() { - if [ $os = "DETECT" ]; then + if [ "$os" = "DETECT" ]; then # Detect UNIX, OSX, FREEBSD, MORPHOS, BEOS, SUNOS, CYGWIN, MINGW, OS2, WINCE, and PSP # Try first via dumpmachine, then via uname -- cgit v1.2.3-54-g00ecf