зеркало из https://github.com/github/ruby.git
18 строки
332 B
Bash
Executable File
18 строки
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PWD=
|
|
case "$0" in
|
|
*/*) srcdir=`dirname $0`;;
|
|
*) srcdir="";;
|
|
esac
|
|
|
|
symlink='--install --symlink'
|
|
case " $* " in
|
|
*" -i "*|*" --install "*)
|
|
# reset to copy missing standard auxiliary files, instead of symlinks
|
|
symlink=
|
|
;;
|
|
esac
|
|
|
|
exec ${AUTORECONF:-autoreconf} ${symlink} "$@" ${srcdir:+"$srcdir"}
|