Feature #719 ยป 0003-Rename-comments-3.3-as-comments-3.4.patch
| data/ruledit/Makefile.am | ||
|---|---|---|
|
pkgdatadir = $(datadir)/$(PACKAGE)/ruledit
|
||
|
pkgdata_DATA = \
|
||
|
comments-3.3.txt
|
||
|
comments-3.4.txt
|
||
|
EXTRA_DIST = $(pkgdata_DATA)
|
||
| meson.build | ||
|---|---|---|
|
endif
|
||
|
install_data(
|
||
|
'data/ruledit/comments-3.3.txt',
|
||
|
'data/ruledit/comments-3.4.txt',
|
||
|
install_dir : join_paths(get_option('datadir'), 'freeciv/ruledit')
|
||
|
)
|
||
| scripts/spec_propagate.sh | ||
|---|---|---|
|
# Must be run from the root of a git checkout.
|
||
|
# Ruledit comments file name
|
||
|
COMMENTS="comments-3.3.txt"
|
||
|
COMMENTS="comments-3.4.txt"
|
||
|
usage() {
|
||
|
echo "*** usage: $0 data/[changed-ruleset-dir]"
|
||
| tools/ruleutil/comments.h | ||
|---|---|---|
|
extern "C" {
|
||
|
#endif /* __cplusplus */
|
||
|
#define COMMENTS_FILE_NAME "comments-3.3.txt"
|
||
|
#define COMMENTS_FILE_NAME "comments-3.4.txt"
|
||
|
struct section_file;
|
||