Bug #8409 ยป 0001-Disallow-prefix-pwd.patch
| configure.in | ||
|---|---|---|
|
if test "$program_prefix" = NONE; then
|
||
|
program_prefix=
|
||
|
fi
|
||
|
if test "$prefix" = `pwd`; then
|
||
|
echo "--prefix cannot be the current working directory."
|
||
|
exit 1;
|
||
|
fi
|
||
|
RUBY_BASE_NAME=`echo ruby | sed "$program_transform_name"`
|
||
|
RUBYW_BASE_NAME=`echo rubyw | sed "$program_transform_name"`
|
||
|
AC_SUBST(RUBY_BASE_NAME)
|
||