From a0014792256a4fe630fb6e895ea9e7230a3a04bb Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 11 Jan 2019 17:46:30 +0100 Subject: [PATCH] firmware: Fix include directory path names When we forked libusrp from the gnuradio source archive, we moved around the directories, but failed to adjust the FW_INCLUDES. Change-Id: I51a10da2325f7f6d158bb80f43e42b6ed29006f0 --- firmware/lib/Makefile.am | 2 +- firmware/src/usrp2/Makefile.am | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firmware/lib/Makefile.am b/firmware/lib/Makefile.am index a6790f0..a791031 100644 --- a/firmware/lib/Makefile.am +++ b/firmware/lib/Makefile.am @@ -30,7 +30,7 @@ EXTRA_DIST = \ DEFINES= -FW_INCLUDES=-I$(top_srcdir)/usrp/firmware/include +FW_INCLUDES=-I$(top_srcdir)/firmware/include # with EA = 0, the FX2 implements a portion of the 8051 "external memory" # on chip. This memory is mapped like this: diff --git a/firmware/src/usrp2/Makefile.am b/firmware/src/usrp2/Makefile.am index 4402cd6..24ff9b1 100644 --- a/firmware/src/usrp2/Makefile.am +++ b/firmware/src/usrp2/Makefile.am @@ -54,10 +54,10 @@ EXTRA_DIST = \ DEFINES=-DHAVE_USRP2 -FW_INCLUDES=-I$(top_srcdir)/usrp/firmware/include \ - -I$(top_srcdir)/usrp/firmware/src/usrp2 \ - -I$(top_srcdir)/usrp/firmware/src/common \ - -I$(top_builddir)/usrp/firmware/src/common +FW_INCLUDES=-I$(top_srcdir)/firmware/include \ + -I$(top_srcdir)/firmware/src/usrp2 \ + -I$(top_srcdir)/firmware/src/common \ + -I$(top_builddir)/firmware/src/common # with EA = 0, the FX2 implements a portion of the 8051 "external memory" # on chip. This memory is mapped like this: