diff options
author | Simon Josefsson <simon@josefsson.org> | 2012-11-26 21:26:27 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2012-11-26 21:26:27 +0100 |
commit | ec66eec0633b01645b6c50b29ad2bbb0f6d0f4c8 (patch) | |
tree | 3d24713cd698a70dfbfd3461f650e28b19071b22 /maint.mk | |
parent | 67a6c9c6299183bdc4c5a0307930ff273b0ff034 (diff) | |
download | gnutls-ec66eec0633b01645b6c50b29ad2bbb0f6d0f4c8.tar.gz |
Update gnulib tools. Add missing unused-parameter.h template.
Diffstat (limited to 'maint.mk')
-rw-r--r-- | maint.mk | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1390,8 +1390,9 @@ submodule-checks ?= no-submodule-changes public-submodule-commit public-submodule-commit: $(AM_V_GEN)if test -d $(srcdir)/.git; then \ cd $(srcdir) && \ - git submodule --quiet foreach test '$$(git rev-parse $$sha1)' \ - = '$$(git merge-base origin $$sha1)' \ + git submodule --quiet foreach \ + test '"$$(git rev-parse "$$sha1")"' \ + = '"$$(git merge-base origin "$$sha1")"' \ || { echo '$(ME): found non-public submodule commit' >&2; \ exit 1; }; \ else \ |