summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2011-11-15 17:58:22 +0000
committerGreg Hudson <ghudson@mit.edu>2011-11-15 17:58:22 +0000
commitaaf864e6f80a95fb04d97be3b77d3e65c4cac420 (patch)
tree6d92352ae83d369e0b9fd011f18f327d8b65c231
parentdea1d4093b1af5906394162efc266e60f4da19c1 (diff)
downloadkrb5-aaf864e6f80a95fb04d97be3b77d3e65c4cac420.tar.gz
krb5-aaf864e6f80a95fb04d97be3b77d3e65c4cac420.tar.xz
krb5-aaf864e6f80a95fb04d97be3b77d3e65c4cac420.zip
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
-rw-r--r--src/util/k5test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/k5test.py b/src/util/k5test.py
index 09a66a90ac..0e7c30b626 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