diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-15 01:44:18 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-15 01:44:18 -0500 |
commit | 5eb6e559d6665f4210be95fe46f1d0a6007dd734 (patch) | |
tree | 71fc71d5ef99fb49df2e3ab5972fce3e1d41395c | |
parent | 6819ff36a37ceb091cb793875e6f4529c0bccc1a (diff) |
mod: files: fix a misplaced paren
-rw-r--r-- | build-aux/Makefile.each.tail/10-files.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/Makefile.each.tail/10-files.mk b/build-aux/Makefile.each.tail/10-files.mk index 8ab187b..3bb3bc2 100644 --- a/build-aux/Makefile.each.tail/10-files.mk +++ b/build-aux/Makefile.each.tail/10-files.mk @@ -34,7 +34,7 @@ $(eval \ $(foreach _files.g,$(files.groups),\ $$(outdir)/$(_files.g): $$(_files.out.$(_files.g))$(at.nl))\ $(foreach _files.g,$(filter-out $(files.default),$(files.groups)),\ - $$(outdir)/install-$(_files.g): $$(_files.sys.$(_files.g)))$(at.nl)) + $$(outdir)/install-$(_files.g): $$(_files.sys.$(_files.g))$(at.nl))) # Destructive targets _files.uninstall = $(_files.sys) |