Changeset 62183


Ignore:
Timestamp:
Oct 4, 2014, 2:31:02 PM (10 years ago)
Author:
wenzeslaus
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/trunk/include/Make/Sphinx.make

    r62120 r62183  
    33SPHINXAPIDOC = sphinx-apidoc2
    44else
    5     APIDOC := $(shell sphinx-apidoc --help 2>/dev/null)
    6     ifdef APIDOC
    7         SPHINXAPIDOC = sphinx-apidoc
    8     endif
     5        APIDOC := $(shell sphinx-apidoc --help 2>/dev/null)
     6        ifdef APIDOC
     7                SPHINXAPIDOC = sphinx-apidoc
     8        endif
    99endif
    1010
    1111BUILD := $(shell sphinx-build2 --version 2>/dev/null)
    1212ifdef BUILD
    13     SPHINXBUILD = sphinx-build2
     13        SPHINXBUILD = sphinx-build2
    1414else
    15     BUILD := $(shell sphinx-build --version 2>/dev/null)
    16     ifdef BUILD
    17         SPHINXBUILD = sphinx-build
    18     endif
     15        BUILD := $(shell sphinx-build --version 2>/dev/null)
     16        ifdef BUILD
     17                SPHINXBUILD = sphinx-build
     18        endif
    1919endif
    2020
Note: See TracChangeset for help on using the changeset viewer.