1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

Fix the syslog starting failure

Should use "-Cxx" instead of "-C xx" as command line for syslog in busybox

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
This commit is contained in:
Zhai Edwin
2010-06-09 14:55:13 +08:00
committed by Joshua Lock
parent 2e54470a0b
commit aa913534e4
+1 -1
View File
@@ -16,7 +16,7 @@ if [ -f /etc/syslog.conf ]; then
LOG_REMOTE=0 LOG_REMOTE=0
for D in $DESTINATION; do for D in $DESTINATION; do
if [ "$D" = "buffer" ]; then if [ "$D" = "buffer" ]; then
SYSLOG_ARGS="$SYSLOG_ARGS -C $BUFFERSIZE" SYSLOG_ARGS="$SYSLOG_ARGS -C$BUFFERSIZE"
LOG_LOCAL=1 LOG_LOCAL=1
elif [ "$D" = "file" ]; then elif [ "$D" = "file" ]; then
if [ -n "$LOGFILE" ]; then if [ -n "$LOGFILE" ]; then