Skip to content

Commit

Permalink
build: fix case in lib names
Browse files Browse the repository at this point in the history
ninja on Windows chokes if libs are named .Lib (Capital L)

PR-URL: nodejs#12522
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Gibson Fahnestock <[email protected]>
  • Loading branch information
refack committed Apr 21, 2017
1 parent b73b903 commit 14c6ae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/icu/icu-generic.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
'conditions': [
[ 'OS=="win"', {
'link_settings': {
'libraries': [ '-lAdvAPI32.Lib', '-lUser32.lib' ],
'libraries': [ '-lAdvAPI32.lib', '-lUser32.lib' ],
},
}],
],
Expand Down Expand Up @@ -518,7 +518,7 @@
'conditions': [
[ 'OS=="win"', {
'link_settings': {
'libraries': [ '-lAdvAPI32.Lib', '-lUser32.lib' ],
'libraries': [ '-lAdvAPI32.lib', '-lUser32.lib' ],
},
}],
],
Expand Down

0 comments on commit 14c6ae8

Please sign in to comment.