[GRASS-SVN] r34721 - grass/branches/develbranch_6/gui/tcltk/gis.m
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Dec 4 12:13:35 EST 2008
Author: glynn
Date: 2008-12-04 12:13:35 -0500 (Thu, 04 Dec 2008)
New Revision: 34721
Modified:
grass/branches/develbranch_6/gui/tcltk/gis.m/Makefile
Log:
Don't set execute permission on Tcl files
Modified: grass/branches/develbranch_6/gui/tcltk/gis.m/Makefile
===================================================================
--- grass/branches/develbranch_6/gui/tcltk/gis.m/Makefile 2008-12-04 16:47:24 UTC (rev 34720)
+++ grass/branches/develbranch_6/gui/tcltk/gis.m/Makefile 2008-12-04 17:13:35 UTC (rev 34721)
@@ -9,7 +9,8 @@
install_scripts:
if [ ! -d $(GISBASE)/etc/gm ] ; then $(MKDIR) $(GISBASE)/etc/gm; fi
#$(INSTALL) description.html $(GISBASE)/docs/html/gis.m.html
- for file in *.tcl ; do $(INSTALL) $$file $(GISBASE)/etc/gm/ ; done
+ for file in *.tcl ; do $(INSTALL_DATA) $$file $(GISBASE)/etc/gm/ ; done
+ $(CHMOD) a+X $(GISBASE)/etc/gm/tksys.tcl
for file in *.gif ; do $(INSTALL_DATA) $$file $(GISBASE)/etc/gm/ ; done
for file in docs/gm_*.html ; do $(INSTALL_DATA) $$file $(GISBASE)/docs/html/ ; done
for file in docs/gm_*.png ; do $(INSTALL_DATA) $$file $(GISBASE)/docs/html/ ; done
More information about the grass-commit
mailing list