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 | |
parent | f4b89660bcbeba3e9ed542e0a84273f7f7fb433f (diff) |
Fixed the equality test in the apache init script.
Diffstat (limited to 'packages/apache')
-rw-r--r-- | packages/apache/apache_2.0.54.bb | 2 | ||||
-rwxr-xr-x | packages/apache/files/init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/apache/apache_2.0.54.bb b/packages/apache/apache_2.0.54.bb index 882b7f2c71..37138bb87c 100644 --- a/packages/apache/apache_2.0.54.bb +++ b/packages/apache/apache_2.0.54.bb @@ -2,7 +2,7 @@ MAINTAINER="David Karlstrom <daka@nslu2-linux.org>" SECTION = "net" DEPENDS = "openssl expat pcre" -PR = "r2" +PR = "r3" # ------------------------------------------ # NOTE: This package is currently only meant 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 |