diff options
| author | Greg Hudson <ghudson@mit.edu> | 2011-11-15 17:58:22 +0000 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2011-11-15 17:58:22 +0000 |
| commit | aaf864e6f80a95fb04d97be3b77d3e65c4cac420 (patch) | |
| tree | 6d92352ae83d369e0b9fd011f18f327d8b65c231 /src/util | |
| parent | dea1d4093b1af5906394162efc266e60f4da19c1 (diff) | |
| download | krb5-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
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/k5test.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
