From: arnoldw@... Date: 2017-06-03T14:45:17+00:00 Subject: [ruby-core:81563] [Ruby trunk Bug#13631] Cannot disable site and vendor directories Issue #13631 has been reported by arnoldwald (arnold w). ---------------------------------------- Bug #13631: Cannot disable site and vendor directories https://bugs.ruby-lang.org/issues/13631 * Author: arnoldwald (arnold w) * Status: Open * Priority: Normal * Assignee: * 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: