| Submitter | Darren Hart |
|---|---|
| Date | July 15, 2011, 9:51 p.m. |
| Message ID | <8fa1659821ae83babe6f28d57fbb5d25cf5146ce.1310766615.git.dvhart@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/7671/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-connectivity/ofono/ofono/ofono b/meta/recipes-connectivity/ofono/ofono/ofono index 6d46fb8..cc99709 100644 --- a/meta/recipes-connectivity/ofono/ofono/ofono +++ b/meta/recipes-connectivity/ofono/ofono/ofono @@ -4,7 +4,7 @@ DAEMON=/usr/sbin/ofonod PIDFILE=/var/run/ofonod.pid DESC="Telephony daemon" -if [ -f /etc/default/ofono] ; then +if [ -f /etc/default/ofono ] ; then . /etc/default/ofono fi
A space is required prior to the closing square bracket. Without it, a parsing error is reported to the console. I don't have hardware to confirm, but I suspect the service would fail to function properly as well. Correct the typo. Signed-off-by: Darren Hart <dvhart@linux.intel.com> --- meta/recipes-connectivity/ofono/ofono/ofono | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)