diff options
author | NIIBE Yutaka <[email protected]> | 2019-01-15 06:29:28 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2019-01-15 06:29:28 +0000 |
commit | fd6f64f1897e00b1d9711463ebb6ec7d099e1995 (patch) | |
tree | e2803181e1552c1fb72cf6ae94d4fbf532229f87 | |
parent | Fix symbol name typo in gpg-error.def.in (diff) | |
download | libgpg-error-fd6f64f1897e00b1d9711463ebb6ec7d099e1995.tar.gz libgpg-error-fd6f64f1897e00b1d9711463ebb6ec7d099e1995.zip |
build: Fix for BSD make.
* doc/Makefile.am (errorref.txt.x): Don't use $<.
--
Variable $< is only valid for suffix rules in BSD make.
Signed-off-by: NIIBE Yutaka <[email protected]>
-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 8cfa95e..d7994d6 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -79,7 +79,7 @@ gpgrt.texi : $(gpgrt_TEXINFOS) touch $(srcdir)/gpgrt.texi errorref.txt.x : errorref.txt - sed '/^##/ d' $< >$@ + sed '/^##/ d' errorref.txt >$@ echo "# Installed by $(PACKAGE_NAME) $(PACKAGE_VERSION)" >>$@ install-data-local: errorref.txt.x |