From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS4713 221.184.0.0/13 X-Spam-Status: No, score=-3.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RP_MATCHES_RCVD,SPF_PASS,T_DKIM_INVALID shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by dcvr.yhbt.net (Postfix) with ESMTP id 2299A20357 for ; Sat, 15 Jul 2017 03:07:30 +0000 (UTC) Received: from neon.ruby-lang.org (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 6E71A120739; Sat, 15 Jul 2017 12:07:27 +0900 (JST) Received: from o1678916x28.outbound-mail.sendgrid.net (o1678916x28.outbound-mail.sendgrid.net [167.89.16.28]) by neon.ruby-lang.org (Postfix) with ESMTPS id 3E18F12068F for ; Sat, 15 Jul 2017 12:07:25 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sendgrid.me; h=from:to:references:subject:mime-version:content-type:content-transfer-encoding:list-id; s=smtpapi; bh=De9EfqWGxJ83mpJE7ZvhVRN7Df4=; b=Brx5obV/UcWiPDRswl /fFsVZp7QpIZPaJtlCD5b83lJNThPNzFBLdBjaYUVYPmPFGQF4vSV+sE8VGrRQHu En2nOo9JWl+TDCrICg/MX17ArsT4gClsHdkinmp23lz4nrtgN1VnmGwfJHG3tVbw KwzlcigfgB2AHQ5QpSzgDFFUU= Received: by filter0961p1mdw1.sendgrid.net with SMTP id filter0961p1mdw1-20461-596986E9-19 2017-07-15 03:07:21.446762171 +0000 UTC Received: from herokuapp.com (ec2-54-235-63-38.compute-1.amazonaws.com [54.235.63.38]) by ismtpd0003p1iad1.sendgrid.net (SG) with ESMTP id 2_enksbYRzOfVRLIdnRtag for ; Sat, 15 Jul 2017 03:07:21.353 +0000 (UTC) Date: Sat, 15 Jul 2017 03:07:22 +0000 (UTC) From: shyouhei@ruby-lang.org To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 X-Redmine-MailingListIntegration-Message-Ids: 57110 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 13631 X-Redmine-Issue-Author: arnoldwald X-Redmine-Issue-Assignee: nobu X-Redmine-Sender: shyouhei X-Mailer: Redmine X-Redmine-Host: bugs.ruby-lang.org X-Redmine-Site: Ruby Issue Tracking System X-Auto-Response-Suppress: All Auto-Submitted: auto-generated X-SG-EID: ync6xU2WACa70kv/Ymy4QrNMhiuLXJG8OTL2vJD1yS7IQdhUKIlrdOidLWOOXhmWuxMBtaoykIsgjF Tjksa6Ywi2Q1vbe9cre4blJRAkKFH00TxSe0Mcbv16Res+6nSs3B6O0NIHcGDLf0siVI4gO5Shx7UF UuBD+2XPMxTAyfJtq8RgHUZBDsXXP7qq6EsZETSCjFbNVOM1MDzs3GYUWA== X-ML-Name: ruby-core X-Mail-Count: 82073 Subject: [ruby-core:82073] [Ruby trunk Bug#13631][Assigned] Cannot disable site and vendor directories X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ruby-core-bounces@ruby-lang.org Sender: "ruby-core" Issue #13631 has been updated by shyouhei (Shyouhei Urabe). Status changed from Open to Assigned Assignee set to nobu (Nobuyoshi Nakada) ---------------------------------------- Bug #13631: Cannot disable site and vendor directories https://bugs.ruby-lang.org/issues/13631#change-65805 * Author: arnoldwald (arnold w) * Status: Assigned * Priority: Normal * Assignee: nobu (Nobuyoshi Nakada) * Target version: * ruby -v: 2.4.1 * Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN ---------------------------------------- (Related to bug #12392?) mkconfig.rb deletes directory settings passed to configure if they are set to "no". Perhaps verconf.h.tmpl should check to see if a setting is missing instead of if it's set to "no"? This patch corrects the problem for me: ~~~ 24c24 < % if C["sitedir"] == "no" --- > % if !C["sitedir"] 30c30 < % if C["vendordir"] == "no" --- > % if !C["vendordir"] ~~~ -- https://bugs.ruby-lang.org/