mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00

* update in the source directory * make symbolic links instead of copies * forward the arguments to autoreconf as-is
9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PWD=
|
|
case "$0" in
|
|
*/*) srcdir="${0%/*}/";;
|
|
*) srcdir="";;
|
|
esac
|
|
|
|
exec ${AUTORECONF:-autoreconf} --install --symlink "$@" ${srcdir:+"$srcdir"}
|