From aaf864e6f80a95fb04d97be3b77d3e65c4cac420 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Tue, 15 Nov 2011 17:58:22 +0000 Subject: [PATCH] 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 --- src/util/k5test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2