]> granicus.if.org Git - graphviz/commitdiff
remove use of '$<' in Makefiles
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 25 Nov 2022 19:15:28 +0000 (11:15 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 27 Nov 2022 19:38:20 +0000 (11:38 -0800)
This is a GNU Make extension that is not supported in BSD Make.

Gitlab: closes #2317

CHANGELOG.md
lib/common/Makefile.am

index 338279d0340c2f583c7b5201c4b5cfb92d28e9f1..d132113a0126394152a5bc7b141ddd175271ed11 100644 (file)
@@ -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
 
index 4443212820f535519870197c4a8ac48f0213e382..cdd0b60ba038279f8bfb781616094c87e4df46f5 100644 (file)
@@ -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