diff options
author | Jelmer Vernooij <jelmer@jelmer.uk> | 2016-05-15 17:12:24 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@jelmer.uk> | 2016-05-15 17:16:38 +0000 |
commit | 2e78f75dc5e33fe6d804e71d999f9cab933afd91 (patch) | |
tree | 676f1c89b8a9cc1cd911a2aca3f154d84bbfca76 /irc_commands.c | |
parent | 4fe91a16d4808ebf47ea8be6f4206139c91d3347 (diff) |
Remove the ARCH / CPU defines.
These only reflect on what arch/cpu bitlbee was built, not on which
it is running. This makes the Debian package unreproducible.
See e.g.
https://tests.reproducible-builds.org/rb-pkg/testing/i386/bitlbee.html
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/irc_commands.c b/irc_commands.c index d3971df9..dd5bdf38 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -766,8 +766,8 @@ static void irc_cmd_list(irc_t *irc, char **cmd) static void irc_cmd_version(irc_t *irc, char **cmd) { - irc_send_num(irc, 351, "%s-%s. %s :%s/%s ", - PACKAGE, BITLBEE_VERSION, irc->root->host, ARCH, CPU); + irc_send_num(irc, 351, "%s-%s. %s :", + PACKAGE, BITLBEE_VERSION, irc->root->host); } static void irc_cmd_completions(irc_t *irc, char **cmd) |