From 2e78f75dc5e33fe6d804e71d999f9cab933afd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 15 May 2016 17:12:24 +0000 Subject: 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 --- irc_commands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'irc_commands.c') 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) -- cgit v1.2.3