diff --git a/pkg/daemon/daemon/gpsd.go b/pkg/daemon/daemon/gpsd.go index 1a25362ae..e6ff7aa85 100644 --- a/pkg/daemon/daemon/gpsd.go +++ b/pkg/daemon/daemon/gpsd.go @@ -131,7 +131,7 @@ func (g *GPSD) CmdInit() { if g.name == "" { g.name = GPSD_PROCESSNAME } - g.cmdLine = fmt.Sprintf("/usr/sbin/%s -p -n -S 2947 -G -N %s", g.Name(), g.SerialPort()) + g.cmdLine = fmt.Sprintf("/usr/local/sbin/%s -p -n -S 2947 -G -N %s", g.Name(), g.SerialPort()) } // CmdRun ... run GPSD diff --git a/pkg/daemon/daemon/gpspipe.go b/pkg/daemon/daemon/gpspipe.go index b414cba10..8fec81514 100644 --- a/pkg/daemon/daemon/gpspipe.go +++ b/pkg/daemon/daemon/gpspipe.go @@ -89,7 +89,7 @@ func (gp *gpspipe) CmdInit() { if gp.name == "" { gp.name = GPSPIPE_PROCESSNAME } - gp.cmdLine = fmt.Sprintf("/usr/bin/gpspipe -v -d -r -l -o %s", gp.SerialPort()) + gp.cmdLine = fmt.Sprintf("/usr/local/bin/gpspipe -v -d -r -l -o %s", gp.SerialPort()) } // CmdRun ... run gpspipe