Project

General

Profile

Actions

Bug #13631

closed

Cannot disable site and vendor directories

Added by arnoldwald (arnold w) almost 7 years ago. Updated over 6 years ago.

Status:
Closed
Target version:
-
[ruby-core:81563]

Description

(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"]

Updated by shyouhei (Shyouhei Urabe) over 6 years ago

  • Status changed from Open to Assigned
  • Assignee set to nobu (Nobuyoshi Nakada)
Actions #2

Updated by nobu (Nobuyoshi Nakada) over 6 years ago

  • Status changed from Assigned to Closed

Applied in changeset trunk|r60141.


verconf.h.tmpl: site and vendor directories

  • template/verconf.h.tmpl: disable site and vendor directories
    when removed. based on the path by arnoldwald (arnold w) at
    [ruby-core:81563]. [Bug #13631]
Actions

Also available in: Atom PDF

Like0
Like0Like0