diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-01-04 15:31:51 +0900 |
---|---|---|
committer | Michel Dänzer <michel.daenzer@amd.com> | 2018-01-08 18:32:46 +0100 |
commit | ad3152fa698b128c9bd266522b0b48594b131055 (patch) | |
tree | 4e0ce8f153c2d9bcb0e7f94f15cd7e17edc798ef /data | |
parent | 831036a6f62005da9fb4a75fe043bd96ce672d27 (diff) | |
download | libdrm-ad3152fa698b128c9bd266522b0b48594b131055.tar.gz libdrm-ad3152fa698b128c9bd266522b0b48594b131055.tar.bz2 libdrm-ad3152fa698b128c9bd266522b0b48594b131055.zip |
amdgpu: fix not to add amdgpu.ids when building without amdgpu
The amdgpu.ids is only required when building with amdgpu support.
Fix not to add it without amdgpu.
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index eba915dd..897a7f35 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -20,4 +20,6 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. libdrmdatadir = @libdrmdatadir@ +if HAVE_AMDGPU dist_libdrmdata_DATA = amdgpu.ids +endif |