2
0

extra-programs-empty.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. # Test that EXTRA_PROGRAMS doesn't get removed because it is empty.
  17. # This check has been introduced in commit 'Release-1-9-254-g9d0eaef'
  18. # into the former test 'subst2.test'.
  19. . test-init.sh
  20. cat >> configure.ac << 'END'
  21. AC_CONFIG_FILES([Makefile2 Makefile3])
  22. AC_SUBST([prog])
  23. AC_PROG_CC
  24. AC_OUTPUT
  25. END
  26. cat > Makefile.am <<'END'
  27. EXTRA_PROGRAMS =
  28. END
  29. cat > Makefile2.am <<'END'
  30. bin_PROGRAMS = a @prog@ b
  31. EXTRA_PROGRAMS =
  32. END
  33. cat > Makefile3.am <<'END'
  34. empty =
  35. EXTRA_PROGRAMS = $(empty)
  36. END
  37. $ACLOCAL
  38. $AUTOMAKE
  39. grep '^EXTRA_PROGRAMS = *$' Makefile.in
  40. grep '^EXTRA_PROGRAMS = *$' Makefile2.in
  41. # Be laxer here, since EXTRA_PROGRAMS might be internally rewritten
  42. # by Automake when it contains references to other variables.
  43. grep '^EXTRA_PROGRAMS =' Makefile3.in
  44. :