tail_build/Makefile |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 4a35d82420503b8f1b1d404cf6e47f3a1e47f384
Author: Luboš Luňák <l.lu...@suse.cz>
Date:   Fri Feb 1 15:58:38 2013 +0100

    fix build from tail_build
    
    gb_Side is set either from toplevel Makefile or from any module Makefile,
    but not when starting build from tail_build
    
    Change-Id: I4df6eb221f5b778ce3c0234251f8dbbb56645028

diff --git a/tail_build/Makefile b/tail_build/Makefile
index aca0e32..20bbfb1 100644
--- a/tail_build/Makefile
+++ b/tail_build/Makefile
@@ -8,7 +8,10 @@
 #
 
 ifeq ($(strip $(SOLARENV)),)
-include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../config_host.mk
+ifeq ($(gb_Side),)
+gb_Side:=host
+endif
+include $(dir $(realpath $(firstword 
$(MAKEFILE_LIST))))/../config_$(gb_Side).mk
 endif
 
 include $(SOLARENV)/gbuild/gbuild.mk
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to