From 172a3076bc6d48d0739ddb362f31464eb1fdd931 Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Sat, 23 Feb 2013 18:07:23 -0700 Subject: Updated README files --- README-1ST | 10 ++++++---- README.md | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README-1ST b/README-1ST index 87e41257..14b9fc6b 100644 --- a/README-1ST +++ b/README-1ST @@ -117,16 +117,18 @@ it's usually fairly obvious where things have gone astray. - Q: Something else fails, or Ledger crashes on startup - A: This, I am most interested in hearing about. Please e-mail me a copy of - config.log and your build log to . Also, if - Ledger is crashing, try running it under gdb like so: + A: This, I am most interested in hearing about. Please file a bug + at the Ledger Bugzilla, http://bugs.ledger-cli.org/. The more + details you can provide, the better. Also, if Ledger is crashing, + try running it under gdb like so: $ gdb ledger (gdb) run ... runs till crash ... (gdb) bt - Send me that backtrace output, and the output from "ledger --version". + Put that backtrace output, and the output from "ledger + --version" in the bug report. ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 5ab146e2..b81c81e7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ few alternatives. I know, you just want to build and play. If you have all the dependencies installed (see below), then simply do this: - git clone git://github.com/jwiegley/ledger.git + git clone git://github.com/ledger/ledger.git cd ledger && ./acprep update # Update to the latest, configure, make Now try your first ledger command: -- cgit v1.2.3 From 7a561f6b2eca69eaf3f0a430a3af9788d299da1e Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Sun, 24 Feb 2013 08:20:28 -0700 Subject: Bug 907. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b81c81e7..45f9de90 100644 --- a/README.md +++ b/README.md @@ -153,8 +153,7 @@ Now that you're up and running, here are a few resources to keep in mind: - [Home page](http://ledger-cli.org) - [IRC channel](irc://irc.freenode.net/ledger) - [Mailing List / Forum](http://groups.google.com/group/ledger-cli) - - [GitHub project page](http://github.com/jwiegley/ledger) - - [Buildbot status](http://www.newartisans.com:9090) + - [GitHub project page](http://github.com/ledger/ledger) - [Ohloh code analysis](http://www.ohloh.net/projects/ledger) If you have ideas you'd like to share, the best way is either to e-mail me a -- cgit v1.2.3 From 94ce2f0fdb4a8ffe576cce0c8bdb2bc96e921cc9 Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Mon, 25 Feb 2013 12:38:53 -0700 Subject: Fixed typo in doc/CMakeLists.txt line 58 "mesage" ==> "message" --- doc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 8ca83783..c2b1d96a 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -55,7 +55,7 @@ foreach(file ${info_files}) endif(BUILD_WEB_DOCS) if(NOT TEXI2PDF) - mesage(WARNING "Could not find texi2pdf. PDF version of documentation will not be built.") + message(WARNING "Could not find texi2pdf. PDF version of documentation will not be built.") else() add_custom_command(OUTPUT ${file_base}.pdf COMMAND texi2pdf -b -q -o ${file_base}.pdf ${CMAKE_CURRENT_SOURCE_DIR}/${file} -- cgit v1.2.3