From: Eric-Olivier Lamey Date: 2010-09-15T22:03:45+09:00 Subject: [ruby-core:32394] [Ruby 1.9-Bug#3832][Open] Etc.sysconfig contains "$(DESTDIR)" when ./configure is called with --sysconfdir= Bug #3832: Etc.sysconfig contains "$(DESTDIR)" when ./configure is called with --sysconfdir= http://redmine.ruby-lang.org/issues/show/3832 Author: Eric-Olivier Lamey Status: Open, Priority: Normal Category: build, Target version: 1.9.2 ruby -v: ruby 1.9.2p0 When the Ruby source files are configured for compilation with ./configure and the --sysconfdir= parameter is specified, the "ext/etc/extconf.h" file is generated with a SYSCONFDIR variable that contains "$(DESTDIR)" literally, not expanded. For example: $ ./configure --prefix=/usr --sysconfdir=/etc ... $ make ... $ grep SYSCONFDIR ext/etc/extconf.h #define SYSCONFDIR "$(DESTDIR)/etc" This variable was introduced in r27667 and seems only used in "lib/rubygems/config_file.rb". Why not use Config::CONFIG['sysconfdir'] there (rbconfig is already required by rubygems)? Note: this was verified on Linux RHEL 5 with ruby-1.9.2-p0.tar.bz2. ---------------------------------------- http://redmine.ruby-lang.org