From ea58f256463efb07824dbd307af06f2c3960f254 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Fri, 30 May 2014 01:07:04 -0700 Subject: build: Avoid gcc pragmas when clang is enabled Change-Id: I86544a9bfd24ef1a69315c0f6c3abcdd9aeb2c69 BUG: 1089172 Signed-off-by: Harshavardhana Reviewed-on: http://review.gluster.org/7932 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- build-aux/xdrgen | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'build-aux') diff --git a/build-aux/xdrgen b/build-aux/xdrgen index c6dd5cc0340..a2240a235a2 100755 --- a/build-aux/xdrgen +++ b/build-aux/xdrgen @@ -22,10 +22,12 @@ append_licence_header () #if defined(__GNUC__) #if __GNUC__ >= 4 +#if !defined(__clang__) #pragma GCC diagnostic ignored "-Wunused-but-set-variable" #pragma GCC diagnostic ignored "-Wunused-variable" #endif #endif +#endif EOF @@ -67,7 +69,7 @@ gen_headers () rm -f $hfile; rpcgen -h -o $hfile $xfile; # the '#ifdef' part of file should be fixed - sed -e 's/-/_/g' $hfile > ${hfile}.new && mv ${hfile}.new $hfile; + sed -e 's/-/_/g' $hfile > ${hfile}.new && mv ${hfile}.new $hfile; # Gen header to temp file and append generated file append_licence_header $hfile $tmp_hfile; # now move the destination file to actual original file -- cgit