Page 1 of 1

[Modified version] Server won't run from main menu

Posted: Sun Jul 09, 2017 8:35 am
by Lachu
It's about progress game, so you can move it into other subforum if needed. I have trouble. In my modification of freeciv (called progress), client can't run server. I must start server first and then connect to it. I thought it's because I ran ./fcgui from development directory, but now I've created flatpak repo, install program from flatpak repo and the same error here.

How to debug this case?

Re: [Modified version] Server won't run from main menu

Posted: Sun Jul 09, 2017 6:40 pm
by Lachu
I have found this bug.

The nations directory inside my ruleset directory isn't copied. I have Makefile.am in my ruleset directory with this content:

Code: Select all

## Process this file with automake to produce Makefile.in

## Override automake so that "make install" puts these in proper place:
pkgdatadir = $(datadir)/$(PACKAGE)/civ2civ3

pkgdata_DATA =          \
        buildings.ruleset \
        cities.ruleset  \
        effects.ruleset \
        script.lua      \
        styles.ruleset  \
        game.ruleset    \
        governments.ruleset \
        nations.ruleset \
        techs.ruleset   \
        terrain.ruleset \
        units.ruleset   \
        README.civ2civ3 \
        nations/barbarian.ruleset \
        nations/generic.ruleset  \
        nations/generic2.ruleset

EXTRA_DIST = $(pkgdata_DATA)