b9dc31ad0b
Based on patch provided by Raphael Langerhorst in PR 35308. 1.0pre3: - Many tiny code cleanups and some small fixes - Some fixes for *BSD systems and 64bit sysytems - List of builtin functions is now a hash (thx to bernd) - Improved performance by reusing stack structs (thx to bernd) 1.0pre2: It contains some small cleanups and build fixes related to mod_fann and mod_gl. 1.0pre1: It only contains some small bugfixes and cleanups compared to version 0.9i 0.9i: This release is primarly a bugfix release.
16 lines
431 B
Text
16 lines
431 B
Text
$NetBSD: patch-ad,v 1.1 2007/03/17 08:45:07 obache Exp $
|
|
|
|
--- syscheck.sh.orig 2006-10-25 08:24:18.000000000 +0000
|
|
+++ syscheck.sh
|
|
@@ -97,9 +97,9 @@ case "$1" in
|
|
[ -f "$file" ] && { result="$file"; break; }
|
|
done
|
|
if [ "$1" = "opengl" ]; then
|
|
- [ "$result" == "0" ] || result=1
|
|
+ [ "$result" = "0" ] || result=1
|
|
else
|
|
- [ "$result" == "0" ] && result=""
|
|
+ [ "$result" = "0" ] && result=""
|
|
fi
|
|
;;
|
|
libsmoke)
|