summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/toaster
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/toaster')
-rwxr-xr-xbitbake/bin/toaster6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster
index 5cc77edb33..dfaff2e071 100755
--- a/bitbake/bin/toaster
+++ b/bitbake/bin/toaster
@@ -252,9 +252,9 @@ case $CMD in
252 fi 252 fi
253 253
254 # Create configuration file 254 # Create configuration file
255 conf=${BUILDDIR}/conf/toaster.conf 255 conf=${BUILDDIR}/conf/local.conf
256 echo "# Created by toaster start script" > $conf 256 line='INHERIT+="toaster buildhistory"'
257 echo "INHERIT+=\"toaster buildhistory\"" >> $conf 257 grep -q "$line" $conf || echo $line >> $conf
258 258
259 if [ $WEBSERVER -gt 0 ] && ! webserverStartAll; then 259 if [ $WEBSERVER -gt 0 ] && ! webserverStartAll; then
260 echo "Failed ${CMD}." 260 echo "Failed ${CMD}."