trans-coord-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

trans-coord/gnun/server/gnun ChangeLog GNUmakefile


From: Yavor Doganov
Subject: trans-coord/gnun/server/gnun ChangeLog GNUmakefile
Date: Thu, 28 Jun 2012 09:19:43 +0000

CVSROOT:        /sources/trans-coord
Module name:    trans-coord
Changes by:     Yavor Doganov <yavor>   12/06/28 09:19:43

Modified files:
        gnun/server/gnun: ChangeLog GNUmakefile 

Log message:
        (template-pots): Guard definition with a _have-Makefile conditional,
        otherwise silent `ls' failures during variables' computation interfere
        with the package build.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/ChangeLog?cvsroot=trans-coord&r1=1.282&r2=1.283
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/GNUmakefile?cvsroot=trans-coord&r1=1.131&r2=1.132

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -b -r1.282 -r1.283
--- ChangeLog   21 Jun 2012 10:24:28 -0000      1.282
+++ ChangeLog   28 Jun 2012 09:19:42 -0000      1.283
@@ -1,3 +1,9 @@
+2012-06-28  Yavor Doganov  <address@hidden>
+
+       * GNUmakefile (template-pots): Guard definition with a
+       _have-Makefile conditional, otherwise silent `ls' failures during
+       variables' computation interfere with the package build.
+
 2012-06-21  Pavel Kharitonov  <address@hidden>
 
        * NEWS: More clarifications about new features and bugfixes.

Index: GNUmakefile
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/GNUmakefile,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -b -r1.131 -r1.132
--- GNUmakefile 20 Jun 2012 14:24:58 -0000      1.131
+++ GNUmakefile 28 Jun 2012 09:19:43 -0000      1.132
@@ -113,11 +113,15 @@
                  outdated
 template-translated-base := $(addprefix $(template-dir)/,$(template-files))
 template-translated-base += $(addprefix $(rootdir)/,$(extra-templates))
+# Guard with a conditional to avoid silent `ls' failures during
+# variables' computation when only the package is being built.
+ifneq ($(_have-Makefile),yes)
 template-pots := $(addsuffix .pot, \
                   $(addprefix $(template-dir)/po/,$(template-files)) \
                   $(foreach template,$(extra-templates), \
                     $(addprefix $(rootdir)/, \
                       $(dir $(template)))po/$(notdir $(template))))
+endif
 template-lang = $(addsuffix .$(1).html,$(template-translated-base))
 template-translated := $(foreach t-lang,$(TEMPLATE_LINGUAS), \
                         $(call template-lang,$(t-lang)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]