summaryrefslogtreecommitdiffstats
path: root/src/mapi
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-10-29 21:32:05 +0000
committerEric Engestrom <[email protected]>2019-11-05 20:30:47 +0000
commit2f652e0b3691e94d6a81e37985741d35561b2312 (patch)
treee09619cadc2a60908b8851b93466cc838d9d2a42 /src/mapi
parent2c4395e61c4c090a85f21d57f2d670b5cd59795a (diff)
meson: move the generic symbols check arguments to a common variable
Signed-off-by: Eric Engestrom <[email protected]> Reviwed-by: Dylan Baker <dylan@pnwbakers>
Diffstat (limited to 'src/mapi')
-rw-r--r--src/mapi/es1api/meson.build2
-rw-r--r--src/mapi/es2api/meson.build2
-rw-r--r--src/mapi/shared-glapi/meson.build2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mapi/es1api/meson.build b/src/mapi/es1api/meson.build
index b2dcd5413ad..711048421b8 100644
--- a/src/mapi/es1api/meson.build
+++ b/src/mapi/es1api/meson.build
@@ -69,7 +69,7 @@ if with_symbols_check
args : [
'--lib', libglesv1_cm,
'--symbols-file', files('gles1-symbols.txt'),
- '--nm', prog_nm.path(),
+ symbols_check_args,
],
suite : ['mapi'],
)
diff --git a/src/mapi/es2api/meson.build b/src/mapi/es2api/meson.build
index 119e8d36a75..ac79aa66f89 100644
--- a/src/mapi/es2api/meson.build
+++ b/src/mapi/es2api/meson.build
@@ -69,7 +69,7 @@ if with_symbols_check
args : [
'--lib', libgles2,
'--symbols-file', files('gles2-symbols.txt'),
- '--nm', prog_nm.path(),
+ symbols_check_args,
],
suite : ['mapi'],
)
diff --git a/src/mapi/shared-glapi/meson.build b/src/mapi/shared-glapi/meson.build
index 27ae6bcc158..5b9db0c081a 100644
--- a/src/mapi/shared-glapi/meson.build
+++ b/src/mapi/shared-glapi/meson.build
@@ -81,7 +81,7 @@ if with_any_opengl and with_tests
args : [
'--lib', libglapi,
'--symbols-file', files('glapi-symbols.txt'),
- '--nm', prog_nm.path(),
+ symbols_check_args,
],
suite : ['mapi'],
)