summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-10-16 15:34:42 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2018-02-01 09:51:16 +0100
commitac7f1e339c8043870d6af29191f1bcd3515fc091 (patch)
tree046fdc56ecf1d0e47dd90c32fa89bb9f98fb29e7 /test
parent936eea5099bb5ab31b76ef22fcf15baed0cdf5ab (diff)
downloadandroid-node-v8-ac7f1e339c8043870d6af29191f1bcd3515fc091.tar.gz
android-node-v8-ac7f1e339c8043870d6af29191f1bcd3515fc091.tar.bz2
android-node-v8-ac7f1e339c8043870d6af29191f1bcd3515fc091.zip
build: make gyp user defined variables lowercase
I mistakenly introduced user defined variables using uppercase characters, reading the gyp documentation they state: "Predefined variables. By convention, these are named with CAPITAL_LETTERS. Predefined variables are set automatically by GYP" and also "By convention, user-defined variables are named with lowercase_letters." This commit renames the user defined variables to lowercase to follow the above mentioned convention. PR-URL: https://github.com/nodejs/node/pull/16238 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/addons/openssl-client-cert-engine/binding.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/addons/openssl-client-cert-engine/binding.gyp b/test/addons/openssl-client-cert-engine/binding.gyp
index b069e43429..f43be60219 100644
--- a/test/addons/openssl-client-cert-engine/binding.gyp
+++ b/test/addons/openssl-client-cert-engine/binding.gyp
@@ -14,7 +14,7 @@
'include_dirs': ['../../../deps/openssl/openssl/include'],
'link_settings': {
'libraries': [
- '../../../../out/<(PRODUCT_DIR)/<(OPENSSL_PRODUCT)'
+ '../../../../out/<(PRODUCT_DIR)/<(openssl_product)'
]
},
}]