Bug 551277: followup bustage fix for ycbcr+layers build-order, in non-libxul builds. pending r?roc -- landing now to fix thunderbird bustage. a=dholbert

This commit is contained in:
Chris Double 2010-04-23 15:13:52 -07:00
parent d1eea59b14
commit e320581a97

View File

@ -48,7 +48,17 @@ ifdef MOZ_TREE_CAIRO
DIRS = cairo
endif
DIRS += thebes public idl src qcms layers ycbcr
DIRS += thebes public idl src qcms
# In static builds, ycbcr must appear after layers in
# the link line on linux. This order is defined by the
# order listed in DIRS. On shared builds ycbcr must
# be built first so the order is reversed.
ifdef BUILD_STATIC_LIBS
DIRS += layers ycbcr
else
DIRS += ycbcr layers
endif
ifdef MOZ_IPC
DIRS += ipc