From: shyouhei@... Date: 2017-07-15T03:07:22+00:00 Subject: [ruby-core:82073] [Ruby trunk Bug#13631][Assigned] Cannot disable site and vendor directories 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/ Unsubscribe: