[eog] build: Fix EOG_DATA_DIR path



commit 522f59168d3513427e133b7149709a44d5536c49
Author: Felix Riemann <friemann gnome org>
Date:   Mon Mar 19 21:14:32 2018 +0100

    build: Fix EOG_DATA_DIR path
    
    EOG_DATA_DIR was accidentally switched to $eog_datadir during the
    migration to Meson. It should have been $eog_pkgdatadir which is
    where application-specific icons are installed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=794472

 src/meson.build |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/meson.build b/src/meson.build
index 179b506..1c02b23 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -134,7 +134,7 @@ deps = common_deps + [
 
 cflags = [
   '-DG_LOG_DOMAIN="@0@"'.format(meson.project_name().to_upper()),
-  '-DEOG_DATA_DIR="@0@"'.format(eog_datadir),
+  '-DEOG_DATA_DIR="@0@"'.format(eog_pkgdatadir),
   '-DEOG_PLUGIN_DIR="@0@"'.format(eog_pluginsdir),
   '-DLIBDIR="@0@"'.format(eog_libdir)
 ]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]