help2.sh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #! /bin/sh
  2. # Copyright (C) 2010-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 --help and --version work, even when the current directory
  17. # contains a broken configure.ac and a broken acinclude.m4.
  18. . test-init.sh
  19. # Ensure we run in a new, clean directory.
  20. mkdir cleandir
  21. cd cleandir
  22. # Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
  23. # adding extra options.
  24. ACLOCAL=$am_original_ACLOCAL
  25. AUTOMAKE=$am_original_AUTOMAKE
  26. echo '[' > configure.ac
  27. echo '[' > acinclude.m4
  28. $AUTOMAKE --version
  29. $AUTOMAKE --help
  30. $ACLOCAL --version
  31. $ACLOCAL --help
  32. # Sanity check: aclocal cannot work with broken acinclude.m4.
  33. $ACLOCAL 2>stderr && { cat stderr >&2; exit 1; }
  34. cat stderr >&2
  35. $FGREP acinclude.m4 stderr
  36. rm -f acinclude.m4
  37. # Sanity checks: aclocal and automake cannot work with broken configure.ac.
  38. $ACLOCAL 2>stderr && { cat stderr >&2; exit 1; }
  39. cat stderr >&2
  40. $FGREP configure.ac stderr
  41. AUTOMAKE_fails
  42. $FGREP configure.ac stderr
  43. :