From 86cb7adae34935b8648e3d108cf650665e6a2932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Sch=C3=B6nheit?= Date: Thu, 21 Jun 2001 15:55:32 +0000 Subject: [PATCH] #88326# under ~NIX systems, extract the runtime lib to be delivered, too (our build process needs a lib without unresolveds --- moz/zipped/makefile.mk | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/moz/zipped/makefile.mk b/moz/zipped/makefile.mk index dd31e5b3155d..338f574b8b47 100644 --- a/moz/zipped/makefile.mk +++ b/moz/zipped/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: fs $ $Date: 2001-06-21 08:18:25 $ +# last change: $Author: fs $ $Date: 2001-06-21 16:55:32 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -76,8 +76,18 @@ all: \ $(MISC)$/unpacked_$(TARGET)_lib \ $(BIN)$/mozruntime.zip +.IF "$(GUI)" == "UNX" + $(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip - +unzip -o -d $(LB) $(OS)$(COM)lib.zip && $(TOUCH) $@ + +unzip -o -d $(LB) $(OS)$(COM)lib.zip && unzip -o -d $(LB) $(OS)$(COM)runtime.zip && $(TOUCH) $@ + +.ELSE + +$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip + +unzip -o -d $(LB) $(OS)$(COM)lib.zip && \ + $(TOUCH) $@ + +.ENDIF $(MISC)$/unpacked_$(TARGET)_inc : $(OS)$(COM)inc.zip +unzip -o -d $(INCCOM) $(OS)$(COM)inc.zip && $(TOUCH) $@