Use spaces for indentation, not tabs.
[gnulib.git] / m4 / lib-ignore.m4
index e518f81..2b0e1bb 100644 (file)
@@ -26,13 +26,13 @@ AC_DEFUN([gl_IGNORE_UNUSED_LIBRARIES],
      # native cc issues annoying warnings and then ignores it,
      # which would cause us to incorrectly conclude that it worked.
      for gl_flags in \
-       '-Wl,--as-needed' \
-       '-Wl,-z,ignore' \
-       '-z ignore'
+        '-Wl,--as-needed' \
+        '-Wl,-z,ignore' \
+        '-z ignore'
      do
        LDFLAGS="$gl_flags $LDFLAGS"
        AC_LINK_IFELSE([AC_LANG_PROGRAM()],
-        [gl_cv_ignore_unused_libraries=$gl_flags])
+         [gl_cv_ignore_unused_libraries=$gl_flags])
        LDFLAGS=$gl_saved_ldflags
        test "$gl_cv_ignore_unused_libraries" != none && break
      done