diff options
author | infirit <[email protected]> | 2014-02-08 13:25:39 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-08 13:31:21 +0100 |
commit | 4cf52a3722472428154559a7102cd8e7e4b05372 (patch) | |
tree | 277ab6edbe4a81262945a61c9989edf7d9d51ef1 | |
parent | 9e5599ba0b6a8b9b6b82d001232220a46a66488d (diff) | |
download | engrampa-4cf52a3722472428154559a7102cd8e7e4b05372.tar.bz2 engrampa-4cf52a3722472428154559a7102cd8e7e4b05372.tar.xz |
Fix file destination directories part 2
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0f6905c..6a7abf7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -30,7 +30,7 @@ AM_CPPFLAGS = \ -DPRIVDATADIR=\"$(privdatadir)\" \ -DUI_DIR=\"$(uidir)\" \ -DFR_LIBDIR=\"$(libdir)\" \ - -DPKG_DATA_DIR=\"$(pkgdatadir)\" \ + -DPKG_DATA_DIR=\"$(datadir)/$(PACKAGE_NAME)\" \ -DPIXMAPSDIR=\""$(datadir)/pixmaps"\" \ -DGLADEDIR=\""$(gladedir)"\" \ -DPRIVEXECDIR=\"$(privexecdir)\" \ @@ -317,7 +317,7 @@ main (int argc, char **argv) g_signal_connect (client, "save-state", G_CALLBACK (fr_save_state), NULL); gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), - PKG_DATA_DIR G_DIR_SEPARATOR_S "icons"); + PKG_DATA_DIR G_DIR_SEPARATOR_S "icons"); fr_stock_init (); /* init_session (argv); */ |