summaryrefslogtreecommitdiffstats
path: root/source-builder/config
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-10-27 08:17:23 +1100
committerChris Johns <chrisj@rtems.org>2019-10-27 08:17:23 +1100
commit9b5017f898bc90df702c8654ccd75733d2250114 (patch)
tree9ab411d73b064b08d3401719298c88c50efb9365 /source-builder/config
parent5/bsps: Add Xilinx Zynq ZC706 BSP. (diff)
downloadrtems-source-builder-9b5017f898bc90df702c8654ccd75733d2250114.tar.bz2
sb/config: Add support for line continuation.
- Add line continuation support so empty macros can be used at the end of configure command lines, ie RTEMS kernel. The config parser removes empty lines and wihout this support a trailing line continuation character joins a configure command line to next command. - Fix freetype's gmake support for non-GNU operating systems.
Diffstat (limited to 'source-builder/config')
-rw-r--r--source-builder/config/freetype-1.cfg6
1 files changed, 5 insertions, 1 deletions
diff --git a/source-builder/config/freetype-1.cfg b/source-builder/config/freetype-1.cfg
index ec03feb..95892dd 100644
--- a/source-builder/config/freetype-1.cfg
+++ b/source-builder/config/freetype-1.cfg
@@ -41,8 +41,12 @@ URL: http://www.freetype.org/
%{host_build_flags}
%ifos freebsd
- GNUMAKE=%{__make} \
+ GNUMAKE=%{__make}
+ %else
+ GNUMAKE=
%endif
+
+ GNUMAKE=${GNUMAKE} \
../${source_dir_freetype}/configure \
--host=%{_host} \
--prefix=%{_prefix} \