diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-31 02:30:27 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-31 02:30:27 (EDT) |
commit | 089ee2540008b41329ee25311953db7abf6559eb (patch) | |
tree | e7e50841b2ddfa50e6fc58804c98a51aff1379d2 | |
parent | bdf5b1f97d3841107db1479ebf4cbf73257a6d5b (diff) |
build: Fix stray printf format specifier
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index a9c09ee..8414b8c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ if IN_GIT PACKAGE_VERSION_GIT = $$(printf ' (%s)' \ "$$({ git describe --tags --dirty 2>/dev/null || \ - printf '%s-g%s%s' \ + printf '%s-g%s' \ "$$(git rev-list --count HEAD)" \ "$$(git describe --tags --dirty --always)"; \ } | sed 's|^.*/||')") |