From 3e7ee377847b18bee39d2125d1e6c4e643e2cce0 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 25 Nov 2022 11:15:28 -0800 Subject: [PATCH] remove use of '$<' in Makefiles This is a GNU Make extension that is not supported in BSD Make. Gitlab: closes #2317 --- CHANGELOG.md | 2 ++ lib/common/Makefile.am | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 338279d03..d132113a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 regression in Graphviz 7.0.2, that intentionally removed these but did not account for the W3C specification making these attributes required when the `href` attribute is set. #265, #2319 +- Building Graphviz from source using the Autotools build system in now possible + on NetBSD. #2317 ## [7.0.3] – 2022-11-26 diff --git a/lib/common/Makefile.am b/lib/common/Makefile.am index 444321282..cdd0b60ba 100644 --- a/lib/common/Makefile.am +++ b/lib/common/Makefile.am @@ -42,11 +42,13 @@ colortbl.h: brewer_lib svgcolor_lib $(top_srcdir)/lib/common/color_names \ brewer_lib: $(top_srcdir)/lib/common/brewer_colors \ $(top_srcdir)/lib/common/make_brewer_lib.py - python3 $(top_srcdir)/lib/common/make_brewer_lib.py "$<" "$@" + python3 $(top_srcdir)/lib/common/make_brewer_lib.py \ + "$(top_srcdir)/lib/common/brewer_colors" "$@" svgcolor_lib: $(top_srcdir)/lib/common/svgcolor_names \ $(top_srcdir)/lib/common/make_svgcolor_lib.py - python3 $(top_srcdir)/lib/common/make_svgcolor_lib.py "$<" "$@" + python3 $(top_srcdir)/lib/common/make_svgcolor_lib.py \ + "$(top_srcdir)/lib/common/svgcolor_names" "$@" htmllex.o htmllex.lo: htmllex.c htmllex.h htmlparse.h htmlparse.o htmlparse.lo: htmlparse.c htmlparse.h -- 2.40.0