Re: wrong permissions on {java,csharp}{comp,exec}.sh

2007-01-17 Thread Paolo Bonzini
Therefore it's more reliable if you invoke the scripts always with /bin/sh in your Makefiles: /bin/sh javaexec.sh ... And then there is no point in doing "chmod +x". Thanks for the explanation. Paolo

Re: wrong permissions on {java,csharp}{comp,exec}.sh

2007-01-17 Thread Bruno Haible
Paolo Bonzini wrote: > Is the attached patch okay? It is needed to make sure the files are > created as executable. You cannot assume that "chmod +x" works. There are situations where it doesn't, such as: - VFAT filesystems under MacOS X, - some configurations of permissions on Windows XP di

wrong permissions on {java,csharp}{comp,exec}.sh

2007-01-17 Thread Paolo Bonzini
Is the attached patch okay? It is needed to make sure the files are created as executable. Thanks, Paolo 2006-01-17 Paolo Bonzini <[EMAIL PROTECTED]> * modules/csharpcomp-script, modules/csharpexec-script, modules/javacomp-script, modules/javaexec-script: Add chmod +x