Fix part of bug 245623: when doing an objdir build, symlink the 'cursors' directory into the objdir so that the Camino Xcode project can pick it up.

This commit is contained in:
smfr%smfr.org 2005-01-16 21:15:43 +00:00
Родитель 53fc3e4ec5
Коммит 8b05973233
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -145,6 +145,13 @@ RES_SRC = nsMacWidget.r
export:: $(GFX_CPPSRCS) $(MAC_CPP_CSRCS) $(srcdir)/../mac/$(RES_SRC)
$(INSTALL) $^ .
# for objdir builds, symlink the cursors dir
ABS_topsrcdir := $(shell cd $(topsrcdir); pwd)
ifneq ($(ABS_topsrcdir),$(MOZ_BUILD_ROOT))
export::
ln -fs $(srcdir)/cursors
endif
$(RES_DEST): $(RES_SRC)
/Developer/Tools/Rez -i /Developer/Headers/FlatCarbon -useDF $(RES_SRC) -o $(RES_DEST)