diff options
author | Jens Seidel <jensseidel@users.sf.net> | 2008-09-01 14:20:29 +0200 |
---|---|---|
committer | Jens Seidel <jensseidel@users.sf.net> | 2008-09-01 14:20:29 +0200 |
commit | 53bd46203f7aba6c8ff374d7f406023586c09623 (patch) | |
tree | 8ba6762478a07079e9f6faefad2a5ab6a663a7d2 | |
parent | 6c320f03b880580c349dc45aafc54c34f5b2a959 (diff) | |
download | aptitude-53bd46203f7aba6c8ff374d7f406023586c09623.tar.gz |
Respect $(srcdir) and add support for help file names containing the country
-rw-r--r-- | src/mine/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mine/Makefile.am b/src/mine/Makefile.am index cd1a84c5..ed22c7b1 100644 --- a/src/mine/Makefile.am +++ b/src/mine/Makefile.am @@ -4,7 +4,8 @@ localedir = $(datadir)/locale INCLUDES = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/src DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ LDADD = @LIBINTL@ -SWEEPERHELPTXTS = mine-help.txt $(wildcard mine-help-??.txt) +SWEEPERHELPTXTS = mine-help.txt $(wildcard $(srcdir)/mine-help-??.txt) \ + $(wildcard $(srcdir)/mine-help-??_??.txt) noinst_LIBRARIES = libcmine.a |