On Friday 23 of March 2012, Lubos Lunak wrote:
> On Thursday 22 of March 2012, Norbert Thiebaud wrote:
> > --- a/solenv/gbuild/gbuild.mk
> > +++ b/solenv/gbuild/gbuild.mk
> > @@ -113,8 +113,12 @@ endif
> >
> >  # for clean, setuplocal and removelocal goals we switch off dependencies
> >  ifneq ($(filter cleanpackmodule clean setuplocal removelocal
> > showdeliverables help debugrun,$(MAKECMDGOALS)),) +ifdef TINDERBUILD
> >  gb_FULLDEPS := $(false)
> >  else
> > +gb_FULLDEPS := $(false)
> > +endif
> > +else
> >  gb_FULLDEPS := $(true)
> >  endif
>
>  Is this the same like should be with --disable-dependency-tracking, except
> that it seems it does not with gbuild?

 To actually provide a patch, is this correct?

-- 
 Lubos Lunak
 l.lu...@suse.cz
From 19bc9d4fe45e7a5fc2dee4c1bf687111b58b149f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= <l.lu...@suse.cz>
Date: Fri, 23 Mar 2012 12:39:45 +0100
Subject: [PATCH] make gbuild follow --disable-dependency-tracking too

---
 solenv/gbuild/gbuild.mk |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index d16d33a..5186a37 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -111,11 +111,11 @@ ifneq ($(gb_DEBUGLEVEL),0)
 gb_SYMBOL := $(true)
 endif
 
-# for clean, setuplocal and removelocal goals we switch off dependencies
-ifneq ($(filter cleanpackmodule clean setuplocal removelocal showdeliverables help debugrun,$(MAKECMDGOALS)),)
+ifneq ($(nodep),)
 gb_FULLDEPS := $(false)
 else
-ifdef TINDERBUILD
+# for clean, setuplocal and removelocal goals we switch off dependencies
+ifneq ($(filter cleanpackmodule clean setuplocal removelocal showdeliverables help debugrun,$(MAKECMDGOALS)),)
 gb_FULLDEPS := $(false)
 else
 gb_FULLDEPS := $(true)
-- 
1.7.7

_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to