From: Ed Page Date: Sat, 6 Aug 2011 01:54:32 +0000 (-0500) Subject: Fixing the desktop file for where the bin actually gets installed X-Git-Url: http://vcs.maemo.org/git/?p=ejpi;a=commitdiff_plain;h=ba15b7aa8f7e32ee6ab045b0a175be16e8affc82 Fixing the desktop file for where the bin actually gets installed --- diff --git a/data/template.desktop b/data/template.desktop index 68bac42..f2f0265 100644 --- a/data/template.desktop +++ b/data/template.desktop @@ -4,11 +4,11 @@ GenericName=Calculator Comment=RPN Calculator #[[[cog # if VARIANT == "fremantle": -# cog.outl("Exec=/usr/bin/run-standalone.sh /usr/bin/%s" % PROGRAM) +# cog.outl("Exec=/usr/bin/run-standalone.sh /usr/local/bin/%s" % PROGRAM) # elif VARIANT == "harmattan": -# cog.outl("Exec=/usr/bin/invoker --single-instance --type=e /usr/bin/%s" % PROGRAM) +# cog.outl("Exec=/usr/bin/invoker --single-instance --type=e /usr/local/bin/%s" % PROGRAM) # elif VARIANT == "ubuntu": -# cog.outl("Exec=/usr/bin/%s" % PROGRAM) +# cog.outl("Exec=/usr/local/bin/%s" % PROGRAM) # else: # raise RuntimeError("Unsupported desktop file flavor %r" % PROGRAM) #]]]