blob: f250e4a247c0adf94f5cf4926232b156a7fb0d3e [file] [log] [blame]
Andrew Geissler84ad7c52020-06-27 00:00:16 -05001From 65e1134505235a60013d91c8b03401b8b4062cde Mon Sep 17 00:00:00 2001
2From: Peter Ogden <ogden@xilinx.com>
3Date: Tue, 3 Mar 2020 10:32:35 -0500
4Subject: [PATCH 3/3] Use sysroot for Displayport library
5
6---
7 pynq/lib/_pynq/_displayport/Makefile | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/pynq/lib/_pynq/_displayport/Makefile b/pynq/lib/_pynq/_displayport/Makefile
11index 5567e34..7f1f7b7 100644
12--- a/pynq/lib/_pynq/_displayport/Makefile
13+++ b/pynq/lib/_pynq/_displayport/Makefile
14@@ -2,7 +2,7 @@ CC ?= gcc
15 CXX ?= g++
16
17 OBJSC = displayport.o
18-INC = -I${PYNQ_BUILD_ROOT}/usr/include/libdrm
19+INC = -I=${PYNQ_BUILD_ROOT}/usr/include/libdrm
20
21 all:
22 $(CXX) -fPIC $(INC) -c -g -std=c++11 displayport.cpp $(CFLAGS)
23--
242.7.4
25