diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/commands/Makefile.am | 2 | ||||
-rw-r--r-- | src/gtk-utils.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 5722e2d..321a0d8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,7 +20,7 @@ privexecdir = $(libexecdir)/engrampa/ shdir = $(libexecdir)/engrampa/ endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/copy-n-paste/ \ -I$(top_srcdir) \ -I$(top_builddir) \ diff --git a/src/commands/Makefile.am b/src/commands/Makefile.am index b51c338..9228238 100644 --- a/src/commands/Makefile.am +++ b/src/commands/Makefile.am @@ -1,7 +1,7 @@ privexecdir = $(libexecdir)/$(PACKAGE) privexec_PROGRAMS = rpm2cpio -INCLUDES = $(DISABLE_DEPRECATED) $(FR_CFLAGS) +AM_CPPFLAGS = $(DISABLE_DEPRECATED) $(FR_CFLAGS) rpm2cpio_SOURCES = rpm2cpio.c rpm2cpio_LDADD = $(FR_LIBS) diff --git a/src/gtk-utils.c b/src/gtk-utils.c index 99251d8..5e7fff4 100644 --- a/src/gtk-utils.c +++ b/src/gtk-utils.c @@ -766,7 +766,7 @@ show_help_dialog (GtkWindow *parent, char *uri; GError *error = NULL; - uri = g_strconcat ("ghelp:engrampa", section ? "?" : NULL, section, NULL); + uri = g_strconcat ("help:engrampa", section ? "?" : NULL, section, NULL); if (! show_uri (gtk_window_get_screen (parent), uri, GDK_CURRENT_TIME, &error)) { GtkWidget *dialog; |