bootstrap: fix a typo in a find invocation.

* gl/build-aux/bootstrap.in (require_buildreq_patch): Fix a typo.
* bootstrap: Regenerate.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
This commit is contained in:
Gary V. Vaughan 2012-10-25 13:40:57 +00:00
parent 90152bb184
commit 7bbf8236dd
2 changed files with 2 additions and 2 deletions

View File

@ -3340,7 +3340,7 @@ func_require_buildreq_patch ()
# The ugly find invocation is necessary to exit with non-zero
# status for old find binaries that don't support -exec fully.
if test ! -d "$local_gl_dir" \
|| find "$local_gl_dir" -name *.diff -exec false {} +; then :
|| find "$local_gl_dir" -name *.diff -exec false {} \; ; then :
else
func_append buildreq 'patch - http://www.gnu.org/s/patch
'

View File

@ -1150,7 +1150,7 @@ func_require_buildreq_patch ()
# The ugly find invocation is necessary to exit with non-zero
# status for old find binaries that don't support -exec fully.
if test ! -d "$local_gl_dir" \
|| find "$local_gl_dir" -name *.diff -exec false {} +; then :
|| find "$local_gl_dir" -name *.diff -exec false {} \; ; then :
else
func_append buildreq 'patch - http://www.gnu.org/s/patch
'