aboutsummaryrefslogtreecommitdiff
path: root/nls/da_DK/Makefile.am
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-06 09:35:05 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-09-14 17:39:11 (GMT)
commit0a42e6ca3d3c3badf189afda7051676e344d208d (patch)
tree43e88a37d2ba6c4c938549236eb0891269da4b12 /nls/da_DK/Makefile.am
parent3c050c3d99d5def5bed329c88b966fe0c78fefcc (diff)
downloadfluxbox-0a42e6ca3d3c3badf189afda7051676e344d208d.zip
fluxbox-0a42e6ca3d3c3badf189afda7051676e344d208d.tar.bz2
Fix VPATH builds with --enable-nls
I needed to add explicit $(srcdir) in Makefiles when referencing to Translation.m. I also removed generated-*.m files from the tree since they can be easily regenerated (and they were confusing VPATH logic). They can be added to the distribution tarball later if needed (but hopefully everyone has iconv).
Diffstat (limited to 'nls/da_DK/Makefile.am')
-rw-r--r--nls/da_DK/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/nls/da_DK/Makefile.am b/nls/da_DK/Makefile.am
index 9ded281..d5eb792 100644
--- a/nls/da_DK/Makefile.am
+++ b/nls/da_DK/Makefile.am
@@ -29,7 +29,7 @@ install-data-local: $(CATFILES)
29translations: $(GENERATED_MFILES) 29translations: $(GENERATED_MFILES)
30 30
31generated-%.m: Translation.m 31generated-%.m: Translation.m
32 iconv -f $(SRC_CODESET) -t $* Translation.m | sed s/$(SRC_CODESET)/$*/ > $@ 32 iconv -f $(SRC_CODESET) -t $* $(srcdir)/Translation.m | sed s/$(SRC_CODESET)/$*/ > $@
33 33
34uninstall-local: 34uninstall-local:
35 @if test x$(NLSTEST) = "x-DNLS"; then \ 35 @if test x$(NLSTEST) = "x-DNLS"; then \