gettext-intl-subdir.sh 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #! /bin/sh
  2. # Copyright (C) 2006-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. # Check gettext 'AM_GNU_GETTEXT_INTL_SUBDIR' support.
  17. required='gettext'
  18. . test-init.sh
  19. cat >>configure.ac <<END
  20. AM_GNU_GETTEXT([external])
  21. AM_GNU_GETTEXT_INTL_SUBDIR
  22. AC_OUTPUT
  23. END
  24. echo 'SUBDIRS = po' >Makefile.am
  25. mkdir po
  26. # If aclocal fails, assume the gettext macros are too old and do not
  27. # define AM_GNU_GETTEXT_INTL_SUBDIR.
  28. $ACLOCAL || skip_ "your gettext macros are probably too old"
  29. # config.rpath is required.
  30. : >config.rpath
  31. # intl/ is required.
  32. AUTOMAKE_fails --add-missing
  33. grep 'AM_GNU_GETTEXT.*intl.*SUBDIRS' stderr
  34. mkdir intl
  35. AUTOMAKE_fails --add-missing
  36. grep 'AM_GNU_GETTEXT.*intl.*SUBDIRS' stderr
  37. echo 'SUBDIRS = po intl' > Makefile.am
  38. $AUTOMAKE --add-missing
  39. :