diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2010-02-10 21:51:00 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2010-02-10 21:51:00 +0100 |
commit | 95405e7e7f955a51642513c3bc4f7c2f92938112 (patch) | |
tree | 6b13f413925f147fcd6d7e5af38ab6b56593c9f0 | |
parent | Multiple catalogs is a major pain. Gettext will not cooperate. Merge. (diff) | |
download | redshift-ng-95405e7e7f955a51642513c3bc4f7c2f92938112.tar.gz redshift-ng-95405e7e7f955a51642513c3bc4f7c2f92938112.tar.bz2 redshift-ng-95405e7e7f955a51642513c3bc4f7c2f92938112.tar.xz |
Define path to locale directory.
Name of gtk-redshift changed, update file reference (add .py).
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index d961d05..8d0944f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,11 @@ +SUBDIRS = po +ACLOCAL_AMFLAGS = -I m4 + +# I18n +localedir = $(datadir)/locale +INCLUDES = -DLOCALEDIR=\"$(localedir)\" + # redshift Program bin_PROGRAMS = redshift @@ -12,7 +19,7 @@ EXTRA_redshift_SOURCES = \ src/vidmode.c src/vidmode.h AM_CFLAGS = -redshift_LDADD = +redshift_LDADD = @LIBINTL@ if ENABLE_RANDR redshift_SOURCES += src/randr.c src/randr.h @@ -32,7 +39,7 @@ endif # gtk-redshift Script if ENABLE_GTK -dist_bin_SCRIPTS = src/gtk-redshift/gtk-redshift +dist_bin_SCRIPTS = src/gtk-redshift/gtk-redshift.py endif # Icons |