Fix problem of duplicate entry in DIRS that was breaking distclean. Bug #64521

This commit is contained in:
cls%seawood.org 2001-01-24 04:40:08 +00:00
Родитель f496e7e62b
Коммит 084f901a99
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -41,7 +41,7 @@ DIRS += xprint
endif
# Build xlibrgb only for X toolkits
ifneq (,$(filter motif xlib,$(MOZ_WIDGET_TOOLKIT)))
ifneq (,$(filter motif xlib,$(MOZ_WIDGET_TOOLKIT))$(MOZ_ENABLE_XLIB))
DIRS += xlibrgb
endif
@ -59,7 +59,7 @@ ifdef MOZ_ENABLE_QT
DIRS += qt
endif
ifdef MOZ_ENABLE_XLIB
DIRS += xlibrgb xlib
DIRS += xlib
endif
ifdef MOZ_ENABLE_PHOTON