From 66e7512eee90bd4ffd82f7df5943c0acbae7e968 Mon Sep 17 00:00:00 2001 From: joonicks Date: Tue, 18 Dec 2018 13:19:06 +0100 Subject: [PATCH] householding updates --- {messages => common}/8ball.txt | 0 common/README | 1 + {messages => common}/away.txt | 0 {messages => common}/insult.txt | 0 {messages => common}/kick.txt | 0 {messages => common}/nick.txt | 0 {messages => common}/pickup.txt | 0 {messages => common}/say.txt | 0 {messages => common}/signoff.txt | 0 {messages => common}/version.txt | 0 config/README | 1 + src/config.h.in | 2 +- 12 files changed, 3 insertions(+), 1 deletion(-) rename {messages => common}/8ball.txt (100%) create mode 100644 common/README rename {messages => common}/away.txt (100%) rename {messages => common}/insult.txt (100%) rename {messages => common}/kick.txt (100%) rename {messages => common}/nick.txt (100%) rename {messages => common}/pickup.txt (100%) rename {messages => common}/say.txt (100%) rename {messages => common}/signoff.txt (100%) rename {messages => common}/version.txt (100%) create mode 100644 config/README diff --git a/messages/8ball.txt b/common/8ball.txt similarity index 100% rename from messages/8ball.txt rename to common/8ball.txt diff --git a/common/README b/common/README new file mode 100644 index 0000000..faa844e --- /dev/null +++ b/common/README @@ -0,0 +1 @@ +Files needed at runtime. diff --git a/messages/away.txt b/common/away.txt similarity index 100% rename from messages/away.txt rename to common/away.txt diff --git a/messages/insult.txt b/common/insult.txt similarity index 100% rename from messages/insult.txt rename to common/insult.txt diff --git a/messages/kick.txt b/common/kick.txt similarity index 100% rename from messages/kick.txt rename to common/kick.txt diff --git a/messages/nick.txt b/common/nick.txt similarity index 100% rename from messages/nick.txt rename to common/nick.txt diff --git a/messages/pickup.txt b/common/pickup.txt similarity index 100% rename from messages/pickup.txt rename to common/pickup.txt diff --git a/messages/say.txt b/common/say.txt similarity index 100% rename from messages/say.txt rename to common/say.txt diff --git a/messages/signoff.txt b/common/signoff.txt similarity index 100% rename from messages/signoff.txt rename to common/signoff.txt diff --git a/messages/version.txt b/common/version.txt similarity index 100% rename from messages/version.txt rename to common/version.txt diff --git a/config/README b/config/README new file mode 100644 index 0000000..bd7b03c --- /dev/null +++ b/config/README @@ -0,0 +1 @@ +Files needed by ./configure to test compiler environment. Not needed after compilation is done (but save if you think you might recompile again later on). diff --git a/src/config.h.in b/src/config.h.in index 66e9194..8f03cb1 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -292,7 +292,7 @@ #define BOTDIR "" #define MECHBASENAME "mech" -#define RANDDIR "messages/" +#define RANDDIR "common/" #define HELPDIR "help/" #define CFGFILE BOTDIR MECHBASENAME ".conf" #define PIDFILE BOTDIR MECHBASENAME ".pid"