From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id AD0DE1F466 for ; Mon, 6 Jan 2020 09:54:51 +0000 (UTC) From: Eric Wong To: raindrops-public@yhbt.net Subject: [PATCH 1/3] ext/raindrops/extconf: fix cflags reset on ancient CC Date: Mon, 6 Jan 2020 09:54:49 +0000 Message-Id: <20200106095451.550-2-bofh@yhbt.net> In-Reply-To: <20200106095451.550-1-bofh@yhbt.net> References: <20200106095451.550-1-bofh@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Oops, but I guess nobody uses i386 anymore... --- ext/raindrops/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/raindrops/extconf.rb b/ext/raindrops/extconf.rb index 7570f24..792e509 100644 --- a/ext/raindrops/extconf.rb +++ b/ext/raindrops/extconf.rb @@ -143,7 +143,7 @@ $defs.push(format("-DHAVE_GCC_ATOMIC_BUILTINS")) true else - prev_cflags = $CFLAGS + $CFLAGS = prev_cflags false end end