summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2023-01-04 12:48:32 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2023-01-04 12:48:32 -0500
commit9c1531037edf3928b4d2a1ad62b1bceabfb5095a (patch)
tree6326c7525cd919f63f969210d0b580694ff8f003 /src
parent909401f4f2dfde61183dfc16991ccdddbdac342f (diff)
downloadlighttpd-git-9c1531037edf3928b4d2a1ad62b1bceabfb5095a.tar.gz
[meson] fix typo in sbindir
Diffstat (limited to 'src')
-rw-r--r--src/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/meson.build b/src/meson.build
index 77089fc3..ffc5d18e 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,5 +1,5 @@
compiler = meson.get_compiler('c')
-sbinddir = join_paths(get_option('prefix'), get_option('sbindir'))
+sbindir = join_paths(get_option('prefix'), get_option('sbindir'))
moduledir = join_paths(get_option('prefix'), get_option('moduledir'))
include_base_paths = [
@@ -646,9 +646,9 @@ endif
executable('lighttpd-angel',
sources: 'lighttpd-angel.c',
dependencies: common_flags + lighttpd_angel_flags,
- c_args: ['-DSBIN_DIR="' + sbinddir + '"'],
+ c_args: ['-DSBIN_DIR="' + sbindir + '"'],
install: true,
- install_dir: sbinddir,
+ install_dir: sbindir,
)
executable('lighttpd', configparser,
@@ -665,7 +665,7 @@ executable('lighttpd', configparser,
, clock_lib
],
install: true,
- install_dir: sbinddir,
+ install_dir: sbindir,
)
test('test_common', executable('test_common',