From 44dfbdf59586d6f914e027080e22686007a523ad Mon Sep 17 00:00:00 2001 Message-Id: <44dfbdf59586d6f914e027080e22686007a523ad.1716318235.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 15 Jun 2020 18:01:06 +0100 Subject: [PATCH] Makefile: Include C++ headers in the cross-tools bundle. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79495a4..4b4a616 100644 --- a/Makefile +++ b/Makefile @@ -155,7 +155,8 @@ CROSS_PATHS += \ $(addprefix /usr/bin/$a-, \ cpp gcc g++ gcov gcov-dump gcov-tool gprof \ gcc-ar gcc-nm gcc-ranlib) \ - /usr/lib/gcc-cross/$a/) + /usr/lib/gcc-cross/$a/ \ + /usr/$a/include/c++) ## Local packages to be compiled and installed in chroots. Archives can be ## found in `pkg/'. -- [mdw]