1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

autogen.sh: Make it work with sh (not bash)

This commit is contained in:
Yusuke Endoh 2021-03-17 23:13:22 +09:00
parent 5b54dc9ab2
commit 1d80d70314

View file

@ -2,7 +2,7 @@
PWD=
case "$0" in
*/*) srcdir="${0%/*}/";;
*/*) srcdir=`dirname $0`;;
*) srcdir="";;
esac