Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: minor, fix some typos in README. #633

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
#
- run: sudo sed -i 's;http://archive.debian.org/debian/;http://deb.debian.org/debian/;' /etc/apt/sources.list
- run: sudo apt-get -y update
- run: sudo apt-get -y install make autopoint texinfo libtool intltool bzip2 gettext clang-3.5 clang-4.0 g++-multilib
- run: sudo apt-get -y --force-yes install make autopoint texinfo libtool intltool bzip2 gettext clang-3.5 clang-4.0 g++-multilib
Copy link
Author

@dfsp-spirit dfsp-spirit Feb 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added the --force-yes here, because without it, this line would fail with an error message saying:

WARNING: The following packages cannot be authenticated!
...list of various packages...
E: There are problems and -y was used without --force-yes

See here for the error. The same error also comes up for other PRs, and is the reason that CI is red for them.

- run: sudo apt-get -y purge aspell
#
- run: ./autogen
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ Before the build:
```

The `./config-*` will set things up for easier development. If you want
to install Aspell to use it rather than develop with it than use the
to install Aspell to use it rather than develop with it then use the
normal `configure`. When `config-*` is used the default things will be
installed in `<build dir>/inst` for easier testing and debugging. You
can change that by using the `--prefix` option.

Autogen should be run when ever anything but the source files or
Autogen should be run whenever anything but the source files or
Makefile.am files are modified.

Than to build and install:
Expand All @@ -40,7 +40,7 @@ somewhere other than `/usr/local` you will probably need to add
`<prefix>/bin` to your PATH or make symbolic links to the executable in
order for the dictionary to build correctly.

To run the debugger on these programs if there are not installed use
To run the debugger on these programs if they are not installed use
```
libtool gdb <debugger parms>
```
Expand Down