Skip to content

Commit

Permalink
Fix install on Windows (#20)
Browse files Browse the repository at this point in the history
* Fix install on Windows

#19

* Fix install on Windows

* Fix install on Windows

Co-authored-by: Afri³ <[email protected]>

Co-authored-by: Afri³ <[email protected]>
  • Loading branch information
httpsx and q9f authored Aug 23, 2022
1 parent d4ac4c3 commit 933244b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/digest/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def cflags(*args)
args.each do |str|
$CFLAGS += " #{str.shellescape} "
$CFLAGS += (ENV['OS'] == "Windows_NT") ? " #{str} " : " #{str.shellescape} "
end
end

Expand Down

0 comments on commit 933244b

Please sign in to comment.