aboutsummaryrefslogtreecommitdiff
path: root/nls/pl_PL/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/pl_PL/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/pl_PL/Makefile.am')
-rw-r--r--nls/pl_PL/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/nls/pl_PL/Makefile.am b/nls/pl_PL/Makefile.am
index 7887edb..c8c139e 100644
--- a/nls/pl_PL/Makefile.am
+++ b/nls/pl_PL/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 \