diff options
author | Petri Latvala <petri.latvala@intel.com> | 2017-09-27 16:47:08 +0300 |
---|---|---|
committer | Petri Latvala <petri.latvala@intel.com> | 2017-09-29 15:35:56 +0300 |
commit | 182b1941d8e221f1f5625c53f74b09bef7d8837a (patch) | |
tree | 699d2ef25b8913745956c214272b4e6ce2fb9670 | |
parent | 8c2676aeaddb45a586d287d91a98728b8c81da20 (diff) |
benchmarks: Actually build LIBDRM_INTEL_BENCHMARKS
Adding LIBDRM_INTEL_BENCHMARKS into benchmarks_PROGRAMS had a tab
before the assignment, making the line be inserted into the Makefile
as is instead of being evaluated by automake.
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r-- | benchmarks/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am index 5c2cd19d..cab087e7 100644 --- a/benchmarks/Makefile.am +++ b/benchmarks/Makefile.am @@ -3,7 +3,7 @@ include Makefile.sources benchmarks_PROGRAMS = $(benchmarks_prog_list) if HAVE_LIBDRM_INTEL - benchmarks_PROGRAMS += $(LIBDRM_INTEL_BENCHMARKS) +benchmarks_PROGRAMS += $(LIBDRM_INTEL_BENCHMARKS) endif AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib |