mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
solaris' test doesn't like -e
This commit is contained in:
parent
e4b549d11d
commit
9175360d53
1 changed files with 2 additions and 2 deletions
|
@ -33,12 +33,12 @@ if test -n "$ac" ; then
|
|||
fi
|
||||
|
||||
if test "$AC_VER_MINOR" -lt "50" ; then
|
||||
if test ! -e configure.in ; then
|
||||
if test ! -f configure.in ; then
|
||||
ln -s configure.ac configure.in
|
||||
fi
|
||||
echo "If you see some warnings about cross-compiling, don't worry; this is normal."
|
||||
elif test "$WOODY_FIX" = "yes" ; then
|
||||
if test ! -e configure.in ; then
|
||||
if test ! -f configure.in ; then
|
||||
ln -s configure.ac configure.in
|
||||
fi
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue