Skip to content

Commit

Permalink
Move MousepadHelp to $libdir/xfce4/mousepad.
Browse files Browse the repository at this point in the history
  • Loading branch information
nschermer committed Aug 26, 2010
1 parent a269c2d commit 3855352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile.am
Expand Up @@ -11,7 +11,8 @@ rpm: dist
rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
@rm -f $(PACKAGE)-$(VERSION).tar.gz @rm -f $(PACKAGE)-$(VERSION).tar.gz


libexec_SCRIPTS = \ mousepad_scriptsdir = $(libdir)/xfce4/mousepad
mousepad_scripts_SCRIPTS = \
MousepadHelp MousepadHelp


MousepadHelp: MousepadHelp.in Makefile MousepadHelp: MousepadHelp.in Makefile
Expand Down
2 changes: 0 additions & 2 deletions mousepad/Makefile.am
Expand Up @@ -4,9 +4,7 @@ INCLUDES = \
-DBINDIR=\"$(bindir)\" \ -DBINDIR=\"$(bindir)\" \
-DDATADIR=\"$(datadir)\" \ -DDATADIR=\"$(datadir)\" \
-DLIBDIR=\"$(libdir)\" \ -DLIBDIR=\"$(libdir)\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DG_LOG_DOMAIN=\"Mousepad\" \ -DG_LOG_DOMAIN=\"Mousepad\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
-DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES \ -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES \
-DGTK_DISABLE_SINGLE_INCLUDES \ -DGTK_DISABLE_SINGLE_INCLUDES \
Expand Down
2 changes: 1 addition & 1 deletion mousepad/mousepad-dialogs.c
Expand Up @@ -97,7 +97,7 @@ mousepad_dialogs_show_help (GtkWindow *parent,
screen = gdk_screen_get_default (); screen = gdk_screen_get_default ();


/* generate the command for the documentation browser */ /* generate the command for the documentation browser */
command = g_strdup (LIBEXECDIR "/MousepadHelp"); command = g_strdup (LIBDIR G_DIR_SEPARATOR_S "xfce4" G_DIR_SEPARATOR_S "mousepad" G_DIR_SEPARATOR_S "MousepadHelp");


/* check if a page is given */ /* check if a page is given */
if (G_UNLIKELY (page != NULL)) if (G_UNLIKELY (page != NULL))
Expand Down

0 comments on commit 3855352

Please sign in to comment.