confsub.sh 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #! /bin/sh
  2. # Copyright (C) 1996-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 to make sure config.h can be in subdir.
  17. # Also, make sure config.h is properly rebuilt.
  18. . test-init.sh
  19. cat >> configure.ac << 'END'
  20. AC_CONFIG_FILES([subdir/Makefile])
  21. AC_CONFIG_HEADERS([subdir/config.h:subdir/config.hin])
  22. AC_OUTPUT
  23. END
  24. cat > Makefile.am << 'END'
  25. SUBDIRS = subdir
  26. END
  27. mkdir subdir
  28. cat > subdir/Makefile.am << 'END'
  29. END
  30. echo 'Before.' > subdir/config.hin
  31. $ACLOCAL
  32. $AUTOMAKE
  33. # Make sure subdir Makefile.in doesn't itself look in the subdir.
  34. # One line is allowed though:
  35. #
  36. # cd $(top_builddir) && $(SHELL) ./config.status subdir/config.h
  37. ($FGREP 'subdir/config.h' subdir/Makefile.in |
  38. $FGREP -v 'cd $(top_builddir)') && exit 1
  39. $AUTOCONF
  40. ./configure
  41. $FGREP 'Before.' subdir/config.h
  42. $sleep
  43. echo 'After.' > subdir/config.hin
  44. $MAKE
  45. $FGREP 'After.' subdir/config.h
  46. :