Index: /bundle_creation/makefile
===================================================================
--- /bundle_creation/makefile	(revision 24)
+++ /bundle_creation/makefile	(revision 25)
@@ -13,10 +13,8 @@
 	@cp -r ../scripts/* .
 
-SSD: usr/local/bin/start-stop-daemon
-
-# start-stop-daemon:
-usr/local/bin/start-stop-daemon: ../tools/start-stop-daemon/start-stop-daemon.c
-	@echo Compiling start-stop-daemon...
-	@gcc -Wall -Wextra -Wno-return-type -Os -o $@ $<
+SSD:
+	@echo Copying start-stop-daemon source...
+	@find ../tools -name "*~" -exec rm {} \;
+	@cp -r ../tools/start-stop-daemon usr/local/lib/7dtd
 
 clean:
Index: /scripts/etc/7dtd.conf
===================================================================
--- /scripts/etc/7dtd.conf	(revision 24)
+++ /scripts/etc/7dtd.conf	(revision 25)
@@ -21,3 +21,4 @@
 export XMLSTARLET=/usr/bin/xmlstarlet
 export PKILL=/usr/bin/pkill
+export SSD=/sbin/start-stop-daemon
 
Index: /scripts/usr/local/lib/7dtd/VERSION
===================================================================
--- /scripts/usr/local/lib/7dtd/VERSION	(revision 24)
+++ /scripts/usr/local/lib/7dtd/VERSION	(revision 25)
@@ -1,2 +1,2 @@
-Current version:	7
-Last edit:	2014-05-26
+Current version:	8
+Last edit:	2014-05-27
Index: /scripts/usr/local/lib/7dtd/commands/start.sh
===================================================================
--- /scripts/usr/local/lib/7dtd/commands/start.sh	(revision 24)
+++ /scripts/usr/local/lib/7dtd/commands/start.sh	(revision 25)
@@ -39,5 +39,5 @@
 		OPTS="-quit -batchmode -nographics -configfile=$(getInstancePath $1)/config.xml -dedicated"
 		
-		start-stop-daemon --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $WINE -- $SDTD_BASE/engine/7DaysToDie.exe $OPTS > $(getInstancePath $1)/stdout.log 2>&1
+		$SSD --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $WINE -- $SDTD_BASE/engine/7DaysToDie.exe $OPTS > $(getInstancePath $1)/stdout.log 2>&1
 		sleep 1
 
@@ -49,5 +49,5 @@
 			SSD_MONITOR_PID="--pidfile $(getInstancePath $1)/monitor.pid --make-pidfile"
 			SSD_MONITOR_DAEMON="--background"
-			start-stop-daemon --start $SSD_MONITOR_PID $SSD_MONITOR_DAEMON --exec "/usr/local/lib/7dtd/monitor-log.sh" -- "$1"
+			$SSD --start $SSD_MONITOR_PID $SSD_MONITOR_DAEMON --exec "/usr/local/lib/7dtd/monitor-log.sh" -- "$1"
 			echo "Done!"
 		else
Index: /scripts/usr/local/lib/7dtd/commands/stop.sh
===================================================================
--- /scripts/usr/local/lib/7dtd/commands/stop.sh	(revision 24)
+++ /scripts/usr/local/lib/7dtd/commands/stop.sh	(revision 25)
@@ -45,5 +45,5 @@
 		if [ $(isRunning $1) -eq 1 ]; then
 			echo "Failed, force closing server..."
-			start-stop-daemon --stop --pidfile $(getInstancePath $1)/7dtd.pid
+			$SSD --stop --pidfile $(getInstancePath $1)/7dtd.pid
 		fi
 
Index: /scripts/usr/local/lib/7dtd/common.sh
===================================================================
--- /scripts/usr/local/lib/7dtd/common.sh	(revision 24)
+++ /scripts/usr/local/lib/7dtd/common.sh	(revision 25)
@@ -61,5 +61,5 @@
 #   1 = running
 isRunning() {
-	start-stop-daemon --status --pidfile $(getInstancePath $1)/7dtd.pid
+	$SSD --status --pidfile $(getInstancePath $1)/7dtd.pid
 	if [ $? -eq 0 ]; then
 		echo 1
Index: /tools/start-stop-daemon/makefile
===================================================================
--- /tools/start-stop-daemon/makefile	(revision 24)
+++ /tools/start-stop-daemon/makefile	(revision 25)
@@ -2,4 +2,8 @@
 	gcc -Wall -Wextra -Wno-return-type -o $@ $<
 
+install: start-stop-daemon
+	chown root.root start-stop-daemon
+	chmod 0755 start-stop-daemon
+
 clean:
 	rm start-stop-daemon
