From: Michael Gloff Date: Tue, 23 Sep 2014 20:33:08 +0000 (-0500) Subject: syslog: Change unused variable declaration LOCAL=0 to LOG_LOCAL=1 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~32324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca68019760de6c5d5401be8eae7e65e7e6ca9021;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git syslog: Change unused variable declaration LOCAL=0 to LOG_LOCAL=1 This fix allows the correct appending of -L to syslogd arguments when both file and remote logging are selected. Signed-off-by: Michael Gloff Signed-off-by: Ross Burton --- diff --git a/meta/recipes-core/busybox/files/syslog b/meta/recipes-core/busybox/files/syslog index 2944d3d06c3..89c4d12e9cd 100644 --- a/meta/recipes-core/busybox/files/syslog +++ b/meta/recipes-core/busybox/files/syslog @@ -28,7 +28,7 @@ if [ -f /etc/syslog-startup.conf ]; then if [ -n "$ROTATEGENS" ]; then SYSLOG_ARGS="$SYSLOG_ARGS -b $ROTATEGENS" fi - LOCAL=0 + LOG_LOCAL=1 elif [ "$D" = "remote" ]; then SYSLOG_ARGS="$SYSLOG_ARGS -R $REMOTE" LOG_REMOTE=1