Fix indentation for newly created packages (#2391)

This commit is contained in:
Adam J. Stewart 2016-11-23 12:58:13 -06:00 committed by becker33
parent 7bda4e98b3
commit e60bccd95c

View File

@ -145,10 +145,10 @@ class AutotoolsGuess(DefaultGuess):
body = """\
def configure_args(self):
# FIXME: Add arguments other than --prefix
# FIXME: If not needed delete the function
args = []
return args"""
# FIXME: Add arguments other than --prefix
# FIXME: If not needed delete the function
args = []
return args"""
class CMakeGuess(DefaultGuess):
@ -161,11 +161,11 @@ class CMakeGuess(DefaultGuess):
body = """\
def cmake_args(self):
# FIXME: Add arguments other than
# FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE
# FIXME: If not needed delete the function
args = []
return args"""
# FIXME: Add arguments other than
# FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE
# FIXME: If not needed delete the function
args = []
return args"""
class SconsGuess(DefaultGuess):