mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
154 B
Bash
10 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
PWD=
|
||
|
case "$0" in
|
||
|
*/*) srcdir=`dirname $0`;;
|
||
|
*) srcdir="";;
|
||
|
esac
|
||
|
|
||
|
exec ${AUTORECONF:-autoreconf} --install --symlink "$@" ${srcdir:+"$srcdir"}
|