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