backslash-before-trailing-whitespace.sh 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #! /bin/sh
  2. # Copyright (C) 2003-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Make sure we diagnose and fix white spaces following backslash.
  17. # Report from Peter Muir.
  18. . test-init.sh
  19. echo AC_OUTPUT >>configure.ac
  20. # Note: trailing whitespace used during the test should not appear as
  21. # trailing whitespace in this file, or it will get stripped by any
  22. # reasonable editor.
  23. echo 'bin_SCRIPTS = foo \ ' >Makefile.am
  24. cat >>Makefile.am <<'END'
  25. bar
  26. ok:
  27. :
  28. END
  29. echo 'data_DATA = baz \ ' >>Makefile.am
  30. echo ' fum' >>Makefile.am
  31. $ACLOCAL
  32. $AUTOCONF
  33. AUTOMAKE_fails
  34. grep ':1:.*whitespace' stderr
  35. grep ':5:.*whitespace' stderr
  36. $AUTOMAKE -Wno-error
  37. ./configure
  38. # Older versions of Automake used to produce invalid Makefiles such input.
  39. $MAKE ok