Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
2.3.0 /
rubygems /
ext /
Delete
Unzip
Name
Size
Permission
Date
Action
build_error.rb
145
B
-rw-r--r--
2016-11-21 08:58
builder.rb
5.67
KB
-rw-r--r--
2016-11-21 08:58
cmake_builder.rb
460
B
-rw-r--r--
2016-11-21 08:58
configure_builder.rb
531
B
-rw-r--r--
2016-11-21 08:58
ext_conf_builder.rb
2.9
KB
-rw-r--r--
2016-11-21 08:58
rake_builder.rb
976
B
-rw-r--r--
2016-11-21 08:58
Save
Rename
# frozen_string_literal: true require 'rubygems/command' class Gem::Ext::CmakeBuilder < Gem::Ext::Builder def self.build(extension, directory, dest_path, results, args=[], lib_dir=nil) unless File.exist?('Makefile') then cmd = "cmake . -DCMAKE_INSTALL_PREFIX=#{dest_path}" cmd << " #{Gem::Command.build_args.join ' '}" unless Gem::Command.build_args.empty? run cmd, results end make dest_path, results results end end