--- webapp-config.orig 2004-05-19 03:43:45.547541968 +0200 +++ webapp-config 2004-05-19 03:44:12.937378080 +0200 @@ -2273,8 +2273,8 @@ # only run the executable scripts, just in case someone # has somehow dropped a README-type file in there - if [ -f "$x" -a -e "$x" ]; then - ( export MY_HTDOCSDIR; export MY_HOSTROOTDIR; export MY_CGIBINDIR; export MY_INSTALLDIR="$G_INSTALLDIR" ; export MY_ICONSDIR ; export MY_SERVERCONFIGDIR ; export MY_ERRORSDIR ; $x "$1" ) + if [ -f "$x" -a -x "$x" ]; then + ( export MY_HTDOCSDIR; export MY_HOSTROOTDIR; export MY_CGIBINDIR; export MY_INSTALLDIR="$G_INSTALLDIR" ; export MY_ICONSDIR ; export MY_SERVERCONFIGDIR ; export MY_ERRORSDIR ; "$x" "$1" ) fi done }