diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2016-01-27 11:59:43 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-01-27 23:12:09 +0000 |
commit | 432e08de88a27313608cced27f133a65e8a56c52 (patch) | |
tree | 126f7ad5c1683992a0d482f7c3a1b5ef683d7a54 | |
parent | ff0c9caa8e1e076b82241304dfd19d5b3e2a2aec (diff) |
tests/kmstest: inverse the order of LDADD libraries
The utils library depends on libdrm. Flip the order, orderwise we might
error during link stage like below:
CC main.o
CCLD kmstest
/usr/bin/ld: ../../tests/util/.libs/libutil.a(libutil_la-kms.o):
undefined reference to symbol 'drmOpen'
Reported-by: Tom Stellard <thomas.stellard@amd.com>
Tested-by: Tom Stellard <thomas.stellard@amd.com>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r-- | tests/kmstest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/kmstest/Makefile.am b/tests/kmstest/Makefile.am index 100662e4600f..ced541b74ef3 100644 --- a/tests/kmstest/Makefile.am +++ b/tests/kmstest/Makefile.am @@ -17,9 +17,9 @@ kmstest_SOURCES = \ main.c kmstest_LDADD = \ - $(top_builddir)/libdrm.la \ + $(top_builddir)/tests/util/libutil.la \ $(top_builddir)/libkms/libkms.la \ - $(top_builddir)/tests/util/libutil.la + $(top_builddir)/libdrm.la run: kmstest ./kmstest |