From: Greg Hudson Date: Tue, 15 Nov 2011 17:58:22 +0000 (+0000) Subject: Fix k5test error message for missing runenv.py X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aaf864e6f80a95fb04d97be3b77d3e65c4cac420;p=krb5.git Fix k5test error message for missing runenv.py "make fake-install" no longer exists, so tell the developer to run "make runenv.py" instead. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25477 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/k5test.py b/src/util/k5test.py index 09a66a90a..0e7c30b62 100644 --- a/src/util/k5test.py +++ b/src/util/k5test.py @@ -512,7 +512,7 @@ def _import_runenv(): global buildtop runenv_py = os.path.join(buildtop, 'runenv.py') if not os.path.exists(runenv_py): - fail('You must run "make fake-install" in %s first.' % buildtop) + fail('You must run "make runenv.py" in %s first.' % buildtop) module = imp.load_source('runenv', runenv_py) return module.env