sh-filename.m4 878 B

12345678910111213141516171819202122232425
  1. # sh-filename.m4 serial 3
  2. dnl Copyright (C) 2018-2023 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl From Bruno Haible.
  7. AC_DEFUN([gl_SH_FILENAME],
  8. [
  9. AH_VERBATIM([SH_FILENAME],
  10. [/* File name of the Bourne shell. */
  11. #if (defined _WIN32 && !defined __CYGWIN__) || defined __CYGWIN__ || defined __ANDROID__
  12. /* Omit the directory part because
  13. - For native Windows programs in a Cygwin environment, the Cygwin mounts
  14. are not visible.
  15. - For 32-bit Cygwin programs in a 64-bit Cygwin environment, the Cygwin
  16. mounts are not visible.
  17. - On Android, /bin/sh does not exist. It's /system/bin/sh instead. */
  18. # define BOURNE_SHELL "sh"
  19. #else
  20. # define BOURNE_SHELL "/bin/sh"
  21. #endif])
  22. ])