ruby/autogen.sh
Nobuyoshi Nakada 447feb0aa0
Improved autogen.sh
* update in the source directory
* make symbolic links instead of copies
* forward the arguments to autoreconf as-is
2021-03-17 19:51:13 +09:00

9 lines
152 B
Bash
Executable file

#!/bin/sh
PWD=
case "$0" in
*/*) srcdir="${0%/*}/";;
*) srcdir="";;
esac
exec ${AUTORECONF:-autoreconf} --install --symlink "$@" ${srcdir:+"$srcdir"}