diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-11 13:16:24 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-11 13:16:24 +0200 |
commit | 8465e4686ff128a40be4807fce481b16c9b38a8e (patch) | |
tree | 51c2a406cdc2157513d8f5806c3e654c7d4f0506 | |
parent | 32e67009a994fafc257b042c29ffb76aed7dbe7d (diff) |
Stick to POSIX make rules
Using $< in a non-suffix rule context is a GNUmake idiom
Reported-by: Alex <a1ex@dismail.de>
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 943e70d7..ae2ccd5d 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -11,6 +11,6 @@ dillo.1: $(srcdir)/dillo.1.in Makefile # Use .in.html instead of .html.in so it is recognized as HTML. user_help.html: $(srcdir)/user_help.in.html Makefile - sed 's/__VERSION__/${VERSION}/g' $< > $@ + sed 's/__VERSION__/${VERSION}/g' $(srcdir)/user_help.in.html > $@ DISTCLEANFILES = dillo.1 user_help.html |