diff options
author | Rod Whitby <rod@whitby.id.au> | 2005-08-20 05:10:28 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-20 05:10:28 +0000 |
commit | 84cdf4fa2923a81afa14144fad3fbcb63f52bb26 (patch) | |
tree | 8f3d01c659225ad93f2fdfb9e5dc45aa9fe8b1f0 /packages/apache/files | |
parent | f4b89660bcbeba3e9ed542e0a84273f7f7fb433f (diff) |
Fixed the equality test in the apache init script.
Diffstat (limited to 'packages/apache/files')
-rwxr-xr-x | packages/apache/files/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/apache/files/init b/packages/apache/files/init index 46dae0395f..6c8ff0a6ec 100755 --- a/packages/apache/files/init +++ b/packages/apache/files/init @@ -64,7 +64,7 @@ case "$1" in ;; esac -if [ $? == 0 ]; then +if [ $? = 0 ]; then echo . exit 0 else |