mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
10 lines
154 B
Bash
Executable File
10 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PWD=
|
|
case "$0" in
|
|
*/*) srcdir=`dirname $0`;;
|
|
*) srcdir="";;
|
|
esac
|
|
|
|
exec ${AUTORECONF:-autoreconf} --install --symlink "$@" ${srcdir:+"$srcdir"}
|