From: Ian Jackson Date: Wed, 7 May 2014 17:32:06 +0000 (+0100) Subject: Makefile.in: pass -Wno-unused-parameter explicitly X-Git-Tag: debian/0.3.1_beta3~1 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/secnet/commitdiff_plain/b24a72ef9d47c9e51f6efe79b51073d690584aa5?ds=inline;hp=b24a72ef9d47c9e51f6efe79b51073d690584aa5 Makefile.in: pass -Wno-unused-parameter explicitly One would think that -Wno-unused would suffice. However, in gcc 4.8.2 it doesn't, even though it does in 4.7.2. This is arguably a bug in gcc (filed as Debian #747345), but it looks like we will have to work around it. This avoids this error message: util.c:202:29: error: unused parameter 'phase' [-Werror=unused-parameter] and several like it. Reported-by: Stephen Early Signed-off-by: Ian Jackson CC: Stephen Early ---