automake: explicitly set TARGET_RADEON_{WINSYS,COMMON}
Originally the variables were set only once via the ?= operator but that causes issues when doing incremental builds. They appear to be undefined and missing from the dependency list despite their addition to LIBADD. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84807 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
@@ -7,7 +7,7 @@ TARGET_LIB_DEPS += \
|
||||
$(RADEON_LIBS) \
|
||||
$(INTEL_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
TARGET_RADEON_WINSYS = \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
endif
|
||||
|
@@ -7,10 +7,10 @@ TARGET_LIB_DEPS += \
|
||||
$(RADEON_LIBS) \
|
||||
$(LIBDRM_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
TARGET_RADEON_WINSYS = \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
TARGET_RADEON_COMMON ?= \
|
||||
TARGET_RADEON_COMMON = \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
|
||||
endif
|
||||
|
@@ -7,10 +7,10 @@ TARGET_LIB_DEPS += \
|
||||
$(RADEON_LIBS) \
|
||||
$(LIBDRM_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
TARGET_RADEON_WINSYS = \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
TARGET_RADEON_COMMON ?= \
|
||||
TARGET_RADEON_COMMON = \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
|
||||
endif
|
||||
|
Reference in New Issue
Block a user