summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-03-17 13:15:17 +0100
committerJim Meyering <jim@meyering.net>2007-03-17 13:15:17 +0100
commitb1d89070f620c8787a36d93d67b0431ca15fb1dc (patch)
tree164915e3b836cdcf5914a993bcdff14106f52e60 /bootstrap
parent20bc0790a728754499d9c38131f5bb5886c68aab (diff)
downloadcoreutils-b1d89070f620c8787a36d93d67b0431ca15fb1dc.tar.xz
Fix a silly syntax error introduced in last change.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 3 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index 5c4b8556a..329408505 100755
--- a/bootstrap
+++ b/bootstrap
@@ -175,10 +175,9 @@ grep '^[ ]*AC_CONFIG_AUX_DIR(\['"$build_aux"'\])' configure.ac \
grep '^[ ]*AC_CONFIG_AUX_DIR('"$build_aux"')' configure.ac \
>/dev/null && found_aux_dir=yes
if test $found_aux_dir = no; then
- {
- echo "$0: expected line not found in configure.ac. Add the following:" >&2
- echo " AC_CONFIG_AUX_DIR([$build_aux])" >&2.
- }
+ echo "$0: expected line not found in configure.ac. Add the following:" >&2
+ echo " AC_CONFIG_AUX_DIR([$build_aux])" >&2.
+fi
# If $build_aux doesn't exist, create it now, otherwise some bits
# below will malfunction. If creating it, also mark it as ignored.