Skip to content

Commit

Permalink
Add --prefix and --host defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed Oct 23, 2024
1 parent c1fcb8f commit dcf7900
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion esy.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"PREFIX": "$cur__install",
"CC_PREFIX": "#{os == 'windows' ? 'x86_64-w64-mingw32-': '' }"
},
"build": ["./configure", "make -j#{self.jobs}"],
"build": [
"./configure --prefix=#{self.install} #{os == 'windows'? '--host x86_64-w64-mingw32': ''}",
"make -j#{self.jobs}"
],
"install": "make install",
"buildsInSource": true,
"exportedEnv": {
Expand Down

0 comments on commit dcf7900

Please sign in to comment.