Skip to content

Commit

Permalink
fix desktop file exec line
Browse files Browse the repository at this point in the history
autoconf will expand the @libexecdir@ in the makefile so we can not use
that in the Makefile rule.
  • Loading branch information
ncopa committed Sep 25, 2015
1 parent 2efc5a9 commit 6ad1ee8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ EXTRA_DIST = \
$(NULL)

xfce-polkit.desktop: xfce-polkit.desktop.in
sed -e 's,@libexecdir@,$(libexecdir),' $< > $@
sed -e 's,@xfce_polkit_libexecdir@,$(libexecdir),' $< > $@

clean-local:
-rm -f xfce-polkit.desktop
2 changes: 1 addition & 1 deletion xfce-polkit.desktop.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Type=Application
_Name=XFCE PolKit
_Comment=Policykit Authentication Agent
Exec=@libexecdir@/xfce-polkit
Exec=@xfce_polkit_libexecdir@/xfce-polkit
Icon=gtk-dialog-authentication
NotShowIn=GNOME;KDE;

0 comments on commit 6ad1ee8

Please sign in to comment.