diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-08-06 09:35:05 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-09-14 17:39:11 (GMT) |
commit | 0a42e6ca3d3c3badf189afda7051676e344d208d (patch) | |
tree | 43e88a37d2ba6c4c938549236eb0891269da4b12 /nls/no_NO/Makefile.am | |
parent | 3c050c3d99d5def5bed329c88b966fe0c78fefcc (diff) | |
download | fluxbox_paul-0a42e6ca3d3c3badf189afda7051676e344d208d.zip fluxbox_paul-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/no_NO/Makefile.am')
-rw-r--r-- | nls/no_NO/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nls/no_NO/Makefile.am b/nls/no_NO/Makefile.am index b4a62f3..65090ce 100644 --- a/nls/no_NO/Makefile.am +++ b/nls/no_NO/Makefile.am | |||
@@ -29,7 +29,7 @@ install-data-local: $(CATFILES) | |||
29 | translations: $(GENERATED_MFILES) | 29 | translations: $(GENERATED_MFILES) |
30 | 30 | ||
31 | generated-%.m: Translation.m | 31 | generated-%.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 | ||
34 | uninstall-local: | 34 | uninstall-local: |
35 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 35 | @if test x$(NLSTEST) = "x-DNLS"; then \ |