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

Problems with building due to Boggle dictionary #6

Open
molleraj opened this issue Jul 24, 2018 · 1 comment
Open

Problems with building due to Boggle dictionary #6

molleraj opened this issue Jul 24, 2018 · 1 comment

Comments

@molleraj
Copy link

After running ./configure and trying to make in both Lubuntu 16.04 and Cygwin, building stops with this issue:

make: *** No rule to make target '/home/abraham/BSDGames/temp-dictionary', needed by 'boggle/mkdict/dictionary'. Stop.

Is this a problem with the makefile or with ./configure? sudo make does not help either. Thanks.

@saufrecht
Copy link

It looks like it may be related to the debian patch tha comes with bsdgames source:

bsdgames-2.17/debian/patches/Custom-configuration-of-Debian-package-build.patch

+# Always use the same wordlist for boggle, and don't use web2, it's too
+# big. Instead, use the union of the wenglish and wbritish wordlists.
+bsd_games_cfg_dictionary_src=`pwd`/temp-dictionary

configure defaults to /usr/share/dict/words:
game_ask boggle "Dictionary for boggle (CHECK ANSWER)" dictionary_src /usr/share/dict/words

With the patch, it instead looks for temp-dictionary. But nothing in the build chain provides a rule to create temp-dictionary. So the make fails.

A workaround: manually create temp-dictionary. For example:

ln -s /usr/share/dict/words temp-dictionary
make

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants