Opened 17 years ago
Closed 17 years ago
#1674 closed defect (fixed)
configure fails on Solaris
Reported by: | Vladimir Marek | Owned by: | |
---|---|---|---|
Component: | other | Version: | VirtualBox 1.6.2 |
Keywords: | solaris configure test sh | Cc: | |
Guest type: | other | Host type: | other |
Description
configure, line 175:
test -n "$retval" -a -e "$retval"
However -e is not valid parameter for test for /bin/sh. I would recommend using -x instead of -e. -x is supported across sh, bash, ksh and csh (and probably others). Also 'which' is supposed to find binary, so testing for executable bit should not be a problem.
Thank you
--
Vlad
Note:
See TracTickets
for help on using tickets.
That bug (it should'e always been -x as -e is doing something different) is foixed in the current OSE svn tree.