From 25d81165c02fb8be5c20bda075435bcabcb45474 Mon Sep 17 00:00:00 2001 From: "mkaply%us.ibm.com" Date: Wed, 5 May 2004 15:20:46 +0000 Subject: [PATCH] OS/2 branding for thunderbird - also, create mail/app/icons dir if it doesn't exist git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_7_BRANCH@155994 18797224-902f-48f8-a5cc-f745e15eee43 --- .../other-licenses/branding/thunderbird/Makefile.in | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mozilla/other-licenses/branding/thunderbird/Makefile.in b/mozilla/other-licenses/branding/thunderbird/Makefile.in index 2b13d67722e..a949f1fed12 100644 --- a/mozilla/other-licenses/branding/thunderbird/Makefile.in +++ b/mozilla/other-licenses/branding/thunderbird/Makefile.in @@ -35,6 +35,9 @@ export:: mkdir $(DEPTH)/mail/base/locale; \ fi cp $(addprefix $(srcdir)/, thunderbird-watermark.png) $(DEPTH)/mail/base/locale + if [ ! -d $(DEPTH)/mail/app/icons ] ; then \ + mkdir $(DEPTH)/mail/app/icons; \ + fi if [ ! -d $(DEPTH)/mail/app/icons/windows ] ; then \ mkdir $(DEPTH)/mail/app/icons/windows; \ fi @@ -43,10 +46,18 @@ export:: mkdir $(DEPTH)/mail/app/icons/gtk; \ fi cp $(srcdir)/mozicon50.xpm $(DEPTH)/mail/app/icons/gtk/messengerWindow.xpm + if [ ! -d $(DEPTH)/mail/app/icons/os2 ] ; then \ + mkdir $(DEPTH)/mail/app/icons/os2; \ + fi + cp $(srcdir)/thunderbird-os2.ico $(DEPTH)/mail/app/icons/os2/messengerWindow.ico ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) cp $(srcdir)/thunderbird.icns $(DIST)/branding/thunderbird.icns endif cp $(srcdir)/thunderbird.ico $(DIST)/branding/app.ico cp $(srcdir)/Header.bmp $(DIST)/branding/Header.bmp cp $(srcdir)/Watermrk.bmp $(DIST)/branding/Watermrk.bmp +ifeq ($(OS_ARCH),OS2) + cp $(srcdir)/thunderbird-os2.ico $(DIST)/branding/thunderbird.ico + cp $(srcdir)/thunderbird-os2.ico $(DIST)/branding/app.ico +endif