CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/07/31 20:08:44
Modified files: gui : gnash.in Log message: check only for existance of the binary, not for it's execute bit CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gnash.in?cvsroot=gnash&r1=1.2&r2=1.3 Patches: Index: gnash.in =================================================================== RCS file: /sources/gnash/gnash/gui/gnash.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- gnash.in 31 Jul 2007 19:56:39 -0000 1.2 +++ gnash.in 31 Jul 2007 20:08:44 -0000 1.3 @@ -42,10 +42,10 @@ for gui in ${gui} ${GUIS}; do exe=${THIS_DIR}/${gui}-gnash - if test -x ${exe}; then + if test -e ${exe}; then exec ${exe} $* fi done -echo "Could not find any <gui>-gnash executable under directory ${THIS_DIR}, with <gui> in $GUI_DIR" >&2 +echo "Could not find any <gui>-gnash executable under directory ${THIS_DIR}, with <gui> in $GUI_DIR." >&2 exit 1 _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit