Anthony Foiani e9cb0c788c Allow multi-word "install" command.
Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c".  When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

  # this is the value returned by autoconf and stored in CT_install
  $ ins="/usr/bin/install -c"

  # if we call it with quotes, the command is not found
  $ "${ins}"
  bash: /usr/bin/install -c: No such file or directory

  # removing the quotes lets it work as expected
  $ ${ins}
  /usr/bin/install: missing file operand
  Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
2012-04-26 19:55:59 -06:00
..
2012-04-02 22:54:30 +02:00
2012-01-16 23:36:42 +01:00
2012-01-03 23:02:04 +01:00
2012-01-16 23:36:42 +01:00
2009-10-30 20:08:44 +01:00
2012-01-16 23:36:42 +01:00
2012-01-16 23:36:42 +01:00
2012-03-06 21:36:10 +01:00