[GRASS-SVN] r62183 - grass/trunk/include/Make

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Oct 4 14:31:03 PDT 2014


Author: wenzeslaus
Date: 2014-10-04 14:31:02 -0700 (Sat, 04 Oct 2014)
New Revision: 62183

Modified:
   grass/trunk/include/Make/Sphinx.make
Log:
remove strange GRASS style indentation from Makefile

Makefiles were always picky about indentation, so removing the ambiguous 4 column indent style done using 8 column tabs. Using tabs only, this is what Makefiles like.


Modified: grass/trunk/include/Make/Sphinx.make
===================================================================
--- grass/trunk/include/Make/Sphinx.make	2014-10-04 21:27:51 UTC (rev 62182)
+++ grass/trunk/include/Make/Sphinx.make	2014-10-04 21:31:02 UTC (rev 62183)
@@ -2,20 +2,20 @@
 ifdef APIDOC
 SPHINXAPIDOC = sphinx-apidoc2
 else
-    APIDOC := $(shell sphinx-apidoc --help 2>/dev/null)
-    ifdef APIDOC
-	SPHINXAPIDOC = sphinx-apidoc
-    endif
+	APIDOC := $(shell sphinx-apidoc --help 2>/dev/null)
+	ifdef APIDOC
+		SPHINXAPIDOC = sphinx-apidoc
+	endif
 endif
 
 BUILD := $(shell sphinx-build2 --version 2>/dev/null)
 ifdef BUILD
-    SPHINXBUILD = sphinx-build2
+	SPHINXBUILD = sphinx-build2
 else
-    BUILD := $(shell sphinx-build --version 2>/dev/null)
-    ifdef BUILD
-	SPHINXBUILD = sphinx-build
-    endif
+	BUILD := $(shell sphinx-build --version 2>/dev/null)
+	ifdef BUILD
+		SPHINXBUILD = sphinx-build
+	endif
 endif
 
 checksphinx:



More information about the grass-commit mailing list