make emmake/emconfigure notifications less scary

This commit is contained in:
Alon Zakai 2015-02-08 21:27:58 -08:00
Родитель 41fda8ee08
Коммит 67e4bc430c
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -24,11 +24,11 @@ from subprocess import CalledProcessError
if len(sys.argv) < 2 or ('configure' not in sys.argv[1] and 'cmake' not in sys.argv[1]):
print >> sys.stderr, '''
emconfigure is a helper for configure, setting various environment
variables so that emcc etc. are used.
variables so that emcc etc. are used. Typical usage:
TYPICAL USAGE: emconfigure ./configure [FLAGS]
emconfigure ./configure [FLAGS]
warning: you do not seem to have 'configure' as the first argument
(but you can run any command instead of configure)
'''

6
emmake
Просмотреть файл

@ -25,11 +25,11 @@ from subprocess import CalledProcessError
if len(sys.argv) < 2 or sys.argv[1] != 'make':
print >> sys.stderr, '''
emmake is a helper for make, setting various environment
variables so that emcc etc. are used.
variables so that emcc etc. are used. Typical usage:
USAGE: emmake make [FLAGS]
emmake make [FLAGS]
warning: you do not seem to have 'make' as the first argument
(but you can run any command instead of make)
'''