Method: Pkg::Config.default_packaging_root

Defined in:
lib/packaging/config.rb

.default_packaging_rootObject



246
247
248
249
250
251
# File 'lib/packaging/config.rb', line 246

def default_packaging_root
  # Assume that PACKAGING_ROOT has been set, or set the PACKAGING_ROOT to
  # one directory above the LIBDIR
  #
  defined?(PACKAGING_ROOT) ? File.expand_path(PACKAGING_ROOT) : File.expand_path(File.join(LIBDIR, ".."))
end