[GRASS5] d.slide.show script

The d.slide.show script will not run.

chmod a+x scripts/d.slide.show/d.slide.show

fixes it, but how do you check a permission change into CVS?

Hamish

On Fri, Jan 21, 2005 at 03:01:16PM +1300, Hamish wrote:

The d.slide.show script will not run.

Here is does. Strange...

chmod a+x scripts/d.slide.show/d.slide.show

fixes it, but how do you check a permission change into CVS?

This should not be necessary as

include/Make/Script.make
takes care (maybe not on your platform?)

Markus

On Fri, 21 Jan 2005, Markus Neteler wrote:

On Fri, Jan 21, 2005 at 03:01:16PM +1300, Hamish wrote:

The d.slide.show script will not run.

Here is does. Strange...

chmod a+x scripts/d.slide.show/d.slide.show

fixes it, but how do you check a permission change into CVS?

This should not be necessary as

include/Make/Script.make
takes care (maybe not on your platform?)

Mmmm in my local copy of grass51 I have several changes that I seem to never have committed to CVS and now am not sure because I can't remember if they are tested or not. But one is:
Index: include/Make/Script.make

RCS file: /grassrepository/grass51/include/Make/Script.make,v
retrieving revision 1.1
diff -u -r1.1 Script.make
--- include/Make/Script.make 28 Apr 2003 08:18:04 -0000 1.1
+++ include/Make/Script.make 21 Jan 2005 12:37:03 -0000
@@ -11,5 +11,4 @@

  $(PROGDIR)/$(PGM): $(PGM)
         if [ ! -d $(PROGDIR) ]; then mkdir $(PROGDIR); fi
- cp $(PGM) $(PROGDIR)
- chmod 0755 $(PROGDIR)/$(PGM)
+ $(INSTALL) -m 755 $(PGM) $(PROGDIR)

Maybe worth a try?

Paul

> The d.slide.show script will not run.

Here is does. Strange...

> chmod a+x scripts/d.slide.show/d.slide.show
>
> fixes it, but how do you check a permission change into CVS?

This should not be necessary as

include/Make/Script.make
takes care (maybe not on your platform?)

I think after messing about & selectively updating some scripts I was
having some 5.4 vs 5.7 PATH + brain issues. Works ok now, AFAICT.

Hamish