cond6.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #! /bin/sh
  2. # Copyright (C) 1998-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. # Test for an odd conditional bug. Report from Matt Leach.
  17. . test-init.sh
  18. echo 'AM_CONDITIONAL([FOO], [true])' >> configure.ac
  19. cat > Makefile.am << 'END'
  20. if FOO
  21. helpdir = $(prefix)/Help
  22. # The continuation line below must start with a Tab to see the bug.
  23. help_DATA = a b c d e \
  24. f g h
  25. else
  26. helpdir = $(prefix)/help
  27. help_DATA = foo
  28. endif
  29. a b c d e f g h:
  30. touch $@
  31. .PHONY: test
  32. test:
  33. is $(help_DATA) == a b c d e f g h
  34. END
  35. # Older versions of this test checked that automake could process the above
  36. # Makefile.am even with no AC_OUTPUT in configure. So continue to do this
  37. # check, for completeness.
  38. $ACLOCAL
  39. $AUTOMAKE
  40. rm -rf autom4te*.cache
  41. echo AC_OUTPUT >> configure.ac
  42. touch aclocal.m4 # Avoid unnecessary firing the remake rules.
  43. $AUTOCONF
  44. $AUTOMAKE Makefile
  45. ./configure --prefix="$(pwd)/_inst"
  46. $MAKE test
  47. $MAKE install
  48. for x in a b c d e f g h; do
  49. test -f _inst/Help/$x
  50. done
  51. :