Skip to content

Commit

Permalink
Merge pull request #1 from birkenfeld/master
Browse files Browse the repository at this point in the history
small fixes
  • Loading branch information
alenz33 committed Apr 8, 2015
2 parents d12e4a5 + 3293339 commit b843dd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ lib64/
parts/
sdist/
var/
log/
*.egg-info/
.installed.cfg
*.egg
Expand Down
6 changes: 3 additions & 3 deletions etc/chains/compile_autotools.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
}

# Build steps
steps.autogen = Step('conduct.SystemCall',
steps.autogen = Step('syscall.SystemCall',
description='Generate configure via autogen.sh',
workingdir='{chain.sourcedir}',
command='./autogen.sh')
steps.configure = Step('conduct.SystemCall',
steps.configure = Step('syscall.SystemCall',
description='Execute configure script',
workingdir='{chain.sourcedir}',
command='./configure')
steps.make = Step('conduct.SystemCall',
steps.make = Step('syscall.SystemCall',
description='Build software via make',
workingdir='{chain.sourcedir}',
command='make')
Expand Down

0 comments on commit b843dd4

Please sign in to comment.