diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-12-28 04:20:19 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-12-28 04:20:19 +0000 |
| commit | f9ec305b1ba5928b2a4d5aff4c38c614b31c45f1 (patch) | |
| tree | caef6b46b4242489b7d4364c8789b36c3972196a /tool | |
| parent | ed99d5ca3465647f4f7999735e7e9b771108a117 (diff) | |
| download | ruby-f9ec305b1ba5928b2a4d5aff4c38c614b31c45f1.tar.gz ruby-f9ec305b1ba5928b2a4d5aff4c38c614b31c45f1.tar.xz ruby-f9ec305b1ba5928b2a4d5aff4c38c614b31c45f1.zip | |
* tool/install-sh: wrote the intention. [ruby-dev:39928]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
| -rw-r--r--[-rwxr-xr-x] | tool/install-sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tool/install-sh b/tool/install-sh index e69de29bb..a5d118598 100755..100644 --- a/tool/install-sh +++ b/tool/install-sh @@ -0,0 +1,17 @@ +#!/bin/sh + +# Just only for using AC_PROG_INSTALL in configure.in. +# See autoconf.info for more detail. + +cat <<EOF >&2 +Ruby tries to use a BSD-compatible install(1) if possible. However Ruby +has its own install(1) alternative. + +This script is necessary just for using AC_PROG_INSTALL in configure.in, +however, it will not executed. So this script just fails. +Please report a bug of Ruby to http://redmine.ruby-lang.org if you meet +this message. + +Thank you. +EOF +exit 1 |
