summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/util.cc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-06-21 23:42:52 +0000
committerKarl Berry <karl@freefriends.org>2009-06-21 23:42:52 +0000
commit8542b3da905deccc50b1bd6d21c7474a29286b3f (patch)
treec9a21ed9311ad8f967c67d17efad475eef50c5c1 /Build/source/utils/asymptote/util.cc
parent95be153f845a361eb22745faa0d1ce509eb18c39 (diff)
asymptote 1.77 sources
git-svn-id: svn://tug.org/texlive/trunk@13865 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/util.cc')
-rw-r--r--Build/source/utils/asymptote/util.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/util.cc b/Build/source/utils/asymptote/util.cc
index bcebc1df597..f322f149ae8 100644
--- a/Build/source/utils/asymptote/util.cc
+++ b/Build/source/utils/asymptote/util.cc
@@ -220,7 +220,7 @@ void execError(const char *command, const char *hint, const char *application)
if(hint) {
string s=string(hint);
transform(s.begin(), s.end(), s.begin(), toupper);
- cerr << "Please put in " << getSetting<string>("config")
+ cerr << "Please put in a file " << getSetting<string>("config")
<< ": " << endl << endl
<< "import settings;" << endl
<< hint << "=\"PATH\";" << endl << endl
@@ -228,7 +228,9 @@ void execError(const char *command, const char *hint, const char *application)
<< application << "." << endl << endl
<< "Alternatively, set the environment variable ASYMPTOTE_" << s
<< endl << "or use the command line option -" << hint
- << "=\"PATH\"" << endl;
+ << "=\"PATH\". For further details, see" << endl
+ << "http://asymptote.sourceforge.net/doc/Configuring.html" << endl
+ << "http://asymptote.sourceforge.net/doc/Search-paths.html" << endl;
}
}