From 57d622645e104f1e6bf5017ba8d36f1b98ac895d Mon Sep 17 00:00:00 2001 From: Stephen Watson Date: Sat, 21 Apr 2007 10:22:41 +0000 Subject: [PATCH] r5010: Shouldn't use == in /bin/sh scripts, that's a bashism (Stephen Watson). --- ROX-Filer/src/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ROX-Filer/src/build b/ROX-Filer/src/build index 5c424f3c..9aa0e51f 100755 --- a/ROX-Filer/src/build +++ b/ROX-Filer/src/build @@ -3,7 +3,7 @@ # This script is called by ROX-Filer-src.xml. It builds the filer # against the GTK 2.4 headers, using the gtk-2.4 compatibility environment. -if [ "x$GTK24_HOME" == "x" ]; then +if [ "x$GTK24_HOME" = "x" ]; then echo 'Run me like this:' echo '0compile setup ../../ROX-Filer-src.xml build-dir' echo 'cd build-dir' -- 2.11.4.GIT