Skip to content
Snippets Groups Projects
Commit e60bccd9 authored by Adam J. Stewart's avatar Adam J. Stewart Committed by becker33
Browse files

Fix indentation for newly created packages (#2391)

parent 7bda4e98
No related branches found
No related tags found
No related merge requests found
...@@ -145,10 +145,10 @@ class AutotoolsGuess(DefaultGuess): ...@@ -145,10 +145,10 @@ class AutotoolsGuess(DefaultGuess):
body = """\ body = """\
def configure_args(self): def configure_args(self):
# FIXME: Add arguments other than --prefix # FIXME: Add arguments other than --prefix
# FIXME: If not needed delete the function # FIXME: If not needed delete the function
args = [] args = []
return args""" return args"""
class CMakeGuess(DefaultGuess): class CMakeGuess(DefaultGuess):
...@@ -161,11 +161,11 @@ class CMakeGuess(DefaultGuess): ...@@ -161,11 +161,11 @@ class CMakeGuess(DefaultGuess):
body = """\ body = """\
def cmake_args(self): def cmake_args(self):
# FIXME: Add arguments other than # FIXME: Add arguments other than
# FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE # FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE
# FIXME: If not needed delete the function # FIXME: If not needed delete the function
args = [] args = []
return args""" return args"""
class SconsGuess(DefaultGuess): class SconsGuess(DefaultGuess):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment