Skip to content

Commit

Permalink
Prefer configured command as RM_RF
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jun 24, 2021
1 parent 358a357 commit 1356b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mkmf.rb
Expand Up @@ -2038,7 +2038,7 @@ def configuration(srcdir)
ruby_headers = #{headers.join(' ')}
RM = #{config_string('RM', &possible_command) || '$(RUBY) -run -e rm -- -f'}
RM_RF = #{'$(RUBY) -run -e rm -- -rf'}
RM_RF = #{config_string('RMALL', &possible_command) || '$(RUBY) -run -e rm -- -rf'}
RMDIRS = #{config_string('RMDIRS', &possible_command) || '$(RUBY) -run -e rmdir -- -p'}
MAKEDIRS = #{config_string('MAKEDIRS', &possible_command) || '@$(RUBY) -run -e mkdir -- -p'}
INSTALL = #{config_string('INSTALL', &possible_command) || '@$(RUBY) -run -e install -- -vp'}
Expand Down

0 comments on commit 1356b90

Please sign in to comment.