From 2cc29d8a95e2560e8a4e452a29ded1ee67b23c17 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Wed, 13 Sep 2023 22:16:18 -0700 Subject: [PATCH] Revert comment about cleaning not being on by default Cleaning is on by default; it's just that prior to #168 the cleaning was quietly failing: ``` Cleaning files only used during build. /Users/stanhu/.asdf/installs/ruby/3.1.4/lib/ruby/3.1.0/fileutils.rb:637:in `rm_rf': wrong number of arguments (given 2, expected 1) (ArgumentError) from ./extconf.rb:28:in `block in
' from :220:in `glob' from ./extconf.rb:27:in `glob' from ./extconf.rb:27:in `
' make: [clean-ports] Error 1 (ignored) ``` --- ext/gpgme/extconf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/gpgme/extconf.rb b/ext/gpgme/extconf.rb index 88b93f0..c0cea4f 100644 --- a/ext/gpgme/extconf.rb +++ b/ext/gpgme/extconf.rb @@ -2,8 +2,8 @@ # Available options: # -# --enable-clean -# --disable-clean (default) +# --enable-clean (default) +# --disable-clean # # This file is largely based on Nokogiri's extconf.rb.