diff options
author | Emil Velikov <[email protected]> | 2016-11-15 19:36:33 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-11-15 20:04:37 +0000 |
commit | 75a39cca8d046749b216046ef5651dda5c451635 (patch) | |
tree | 30b3969b7056ddba9360582b8864029a94e4229b /src/amd/Makefile.common.am | |
parent | 95ed2d9d2cf161ce63fe6a8b1694288634b6b65e (diff) |
amd: automake: android: rename sources lists to foo_FILES
Autotools goes smart on us warning that foo_SOURCES variable is present
yet a target with name foo is missing. Rename things (like we do
throughout the build) to silence the warnings.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/amd/Makefile.common.am')
-rw-r--r-- | src/amd/Makefile.common.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/Makefile.common.am b/src/amd/Makefile.common.am index 7cda4fa8274..1a36e48101c 100644 --- a/src/amd/Makefile.common.am +++ b/src/amd/Makefile.common.am @@ -52,12 +52,12 @@ common_libamd_common_la_CXXFLAGS = \ noinst_LTLIBRARIES += $(COMMON_LIBS) -common_libamd_common_la_SOURCES = $(AMD_COMPILER_SOURCES) +common_libamd_common_la_SOURCES = $(AMD_COMPILER_FILES) # nir_to_llvm requires LLVM 3.9, which is only required as a minimum when # radv is built. if HAVE_RADEON_VULKAN -common_libamd_common_la_SOURCES += $(AMD_NIR_SOURCES) +common_libamd_common_la_SOURCES += $(AMD_NIR_FILES) endif endif |