diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-11-08 15:29:39 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-11-08 15:29:39 -0800 |
commit | f069453dde853812267eacad6f07f0569ad4888c (patch) | |
tree | 74ef3d9c77231510ca517a018f2a73e2cec290e2 /Makefile.am | |
parent | 5644e27cc492491b746ba59571b1b40d10909aa5 (diff) |
Buildfix for case insensitive file systems
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index b15dd44..b642131 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ bin_PROGRAMS = beforelight -beforelight_CFLAGS = $(BEFORELIGHT_CFLAGS) +AM_CFLAGS = $(BEFORELIGHT_CFLAGS) beforelight_LDADD = $(BEFORELIGHT_LIBS) beforelight_SOURCES = \ @@ -34,14 +34,15 @@ appman_PRE = \ # App default files (*.ad) EXTRA_DIST = \ - Beforelight.ad + app-defaults/Beforelight.ad APPDEFAULTFILES = \ - Beforelight + app-defaults/Beforelight SUFFIXES = .ad .ad: + $(mkdir_p) app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |