aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:52:30 +0000
committerJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:52:30 +0000
commitf2835004eadf6af5473f95074ce1eac4fcddd53e (patch)
treeef349e44a364213ef0d65976aef6a27cc6bc3a99
parentdbf7c7edf8221a14a0d1ac8893b52cce6d7061d0 (diff)
downloadmeson-f2835004eadf6af5473f95074ce1eac4fcddd53e.zip
meson-f2835004eadf6af5473f95074ce1eac4fcddd53e.tar.gz
meson-f2835004eadf6af5473f95074ce1eac4fcddd53e.tar.bz2
spelling: necessary
-rw-r--r--test cases/common/125 shared module/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/125 shared module/meson.build b/test cases/common/125 shared module/meson.build
index d96d8fc..29277e9 100644
--- a/test cases/common/125 shared module/meson.build
+++ b/test cases/common/125 shared module/meson.build
@@ -6,7 +6,7 @@ l = shared_library('runtime', 'runtime.c')
# is a common approach for plugins that are only used
# with dlopen. Any symbols are resolved dynamically
# at runtime. This requires extra help on Windows, so
-# should be avoided unless really neccessary.
+# should be avoided unless really necessary.
m = shared_module('mymodule', 'module.c')
e = executable('prog', 'prog.c', link_with : l, dependencies : dl)
test('import test', e, args : m)