Piotr Obrzut wrote: > I've manage to solve the problem with finding crystal space config > (by setting the CRYSTAL var with cygwin like path). Unfortunately > later I've found new problems with cel config. This time after > running cel-config script it is telling me that it can't find > cel-config-1.3 file (even when I use cygwin like path for cel): > checking for cel-config... /cygdrive/e/programowanie/cel/cel-config > checking if CEL version >= 1.2... /cygdrive/e/programowanie/cel/cel-config: > line > /cel-config-1.3: No such file or directory > /cygdrive/e/programowanie/cel/cel-config: line 41: > /cygdrive/e/programowanie/cel > /cel-config-1.3: No such file or directory
I don't immediately see a reason for this failure. The script earlier does a 'test -x' for this file, and that seems to succeed, so presumably the file exists. Line 41 should just be executing the found file. The top-level cel-config script does do some manipulation on the discovered path, but the final reconstructed cel-config-1.3 path looks okay (unless it contains some non-printing characters, which seems unlikely). You might insert a line just before 41 and print out the result of another 'test -x' or 'test -f' test on the reconstructed path. -- ES ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Crystal-main mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/crystal-main Unsubscribe: mailto:[EMAIL PROTECTED]
