From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18912 invoked by alias); 1 Nov 2012 21:56:47 -0000 Received: (qmail 18896 invoked by uid 22791); 1 Nov 2012 21:56:45 -0000 X-SWARE-Spam-Status: No, hits=-0.8 required=5.0 tests=AWL,BAYES_00,MSGID_MULTIPLE_AT X-Spam-Check-By: sourceware.org Received: from mailhost.u-strasbg.fr (HELO mailhost.u-strasbg.fr) (130.79.200.155) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 01 Nov 2012 21:56:39 +0000 Received: from md14.u-strasbg.fr (md14.u-strasbg.fr [130.79.200.249]) by mailhost.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id qA1LuYtv064127 for ; Thu, 1 Nov 2012 22:56:34 +0100 (CET) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from mailserver.u-strasbg.fr (ms17.u-strasbg.fr [130.79.204.117]) by md14.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id qA1LuXQb010773 for ; Thu, 1 Nov 2012 22:56:33 +0100 Received: from E6510Muller (lec67-4-82-230-53-140.fbx.proxad.net [82.230.53.140]) (user=mullerp mech=LOGIN) by mailserver.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id qA1LuWXZ003937 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for ; Thu, 1 Nov 2012 22:56:33 +0100 (envelope-from pierre.muller@ics-cnrs.unistra.fr) From: "Pierre Muller" To: Subject: [RFA] contrib/ari: Avoid permission issue for script Date: Thu, 01 Nov 2012 21:56:00 -0000 Message-ID: <000f01cdb87b$c193f5c0$44bbe140$@muller@ics-cnrs.unistra.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-11/txt/msg00029.txt.bz2 Generating a web page from the newly committed Files in src/gdb/contrib/ari directory is almost possible without change. But I still have the problem of the permissions of the script files... And I still don't know if (and if yes, how) I can set file permissions in the CVS repository... I can lift the problem for the main script, by calling it using: sh ../../src/gdb/contrib/ari/ create-web-ari-in-src.sh, but this script calls update-web-ari.sh script without using '. script'... Is this OK? Other question: Should I add myself as contrib/ari maintainer? 2012-11-01 Pierre Muller * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script is not executable. Index: create-web-ari-in-src.sh =================================================================== RCS file: /cvs/src/src/gdb/contrib/ari/create-web-ari-in-src.sh,v retrieving revision 1.1 diff -u -r1.1 create-web-ari-in-src.sh --- create-web-ari-in-src.sh 1 Nov 2012 21:22:27 -0000 1.1 +++ create-web-ari-in-src.sh 1 Nov 2012 21:48:21 -0000 @@ -67,7 +67,7 @@ fi # Launch update-web-ari.sh in same directory as current script. -${scriptpath}/update-web-ari.sh ${srcdir} ${tempdir} ${webdir} gdb +. ${scriptpath}/update-web-ari.sh ${srcdir} ${tempdir} ${webdir} gdb if [ -f "${webdir}/index.html" ] ; then echo "ARI output can be viewed in file \"${webdir}/index.html\""