This commit is contained in:
Kevin Lange 2014-02-12 13:33:19 -08:00
parent e2fc901d93
commit 3fd6a447ef
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ run-config: system
util/config-parser ${EMU}
test: system
python util/run-tests.py 2>/dev/null
python2 util/run-tests.py 2>/dev/null
.passed:
@util/check-reqs > /dev/null
@ -100,7 +100,7 @@ kernel/sys/version.o: kernel/*/*.c kernel/*.c
####################
.userspace-check: ${USERSPACE}
@cd userspace && python build.py
@cd userspace && python2 build.py
@touch .userspace-check
toaruos-disk.img: .userspace-check

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
JuJu - An automagical build tool for the とあるOS userspace.