Hi Stephan,

On Thu, Feb 24, 2000 at 10:46:47AM +0100, Stephan Kulow wrote:
> Well, I think I found the bug. The multi-language branch 
> creates the objdir and the code looks like this:
> 
>       if test ! -d $objdir; then
>         $show "$mkdir $objdir"
>         $run $mkdir $objdir
>         status=$?
>         if test $status -ne 0 && test ! -d $dir; then
>           exit $status
>         fi
>       fi 
> 
> And the $dir is quite not existant :)

I just committed a fix for this.  How's this:

      if test ! -d $objdir; then
        $show "$mkdir $objdir"
        $run $mkdir $objdir
        status=$?
        if test $status -ne 0 && test ! -d $objdir; then
          exit $status
        fi
      fi

-Ossama
-- 
Ossama Othman <[EMAIL PROTECTED]>
Distributed Object Computing Laboratory, Univ. of California at Irvine
1024D/F7A394A8 - 84ED AA0B 1203 99E4 1068  70E6 5EB7 5E71 F7A3 94A8

Reply via email to