summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-04-01 08:35:38 -0400
committerColin Walters <walters@verbum.org>2013-04-01 08:35:38 -0400
commit2294058e9f4ca8f91650f7f6503c6bf1d2271c8d (patch)
treea2c2080946b4e6588eb7ddf59536a4a7cc6a06b0 /utils
parent064ebd55bb838a4225e8cb525717e315c29d4d8b (diff)
downloadgdm-2294058e9f4ca8f91650f7f6503c6bf1d2271c8d.tar.gz
build: Fix srcdir != builddir issues with previous commit
We need top_srcdir.
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am
index 1cda413d..8b400f4c 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -1,8 +1,10 @@
NULL =
AM_CPPFLAGS = \
- -I. \
- -I.. \
+ -I$(srcdir) \
+ -I$(builddir) \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
-DGDM_SCREENSHOT_DIR=\""$(GDM_SCREENSHOT_DIR)"\"\
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \