2
0

install-sh.m4 681 B

123456789101112131415161718192021
  1. ## -*- Autoconf -*-
  2. # Copyright (C) 2001-2017 Free Software Foundation, Inc.
  3. #
  4. # This file is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # AM_PROG_INSTALL_SH
  8. # ------------------
  9. # Define $install_sh.
  10. AC_DEFUN([AM_PROG_INSTALL_SH],
  11. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  12. if test x"${install_sh+set}" != xset; then
  13. case $am_aux_dir in
  14. *\ * | *\ *)
  15. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  16. *)
  17. install_sh="\${SHELL} $am_aux_dir/install-sh"
  18. esac
  19. fi
  20. AC_SUBST([install_sh])])