From: Fred Morcos Date: Fri, 11 Aug 2023 11:48:37 +0000 (+0200) Subject: Meson: libdir and pkglibdir X-Git-Tag: rec-5.1.0-alpha1~80^2~265 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d07827ea4d043e6b6bc1f52480467b627142374f;p=thirdparty%2Fpdns.git Meson: libdir and pkglibdir --- diff --git a/meson.build b/meson.build index e9d7042ff5..7d932f28ab 100644 --- a/meson.build +++ b/meson.build @@ -29,6 +29,7 @@ subdir('meson' / 'version') # Generate version define subdir('meson' / 'compiler-setup') # Common compiler setup subdir('meson' / 'summary') # Print a system/project summary subdir('meson' / 'sysconfdir') # Sysconfdir +subdir('meson' / 'libdir') # Libdir subdir('meson' / 'timet-size') # Check the size of time_t subdir('meson' / 'timet-sign') # Check the sign of time_t subdir('meson' / 'flex') # Find flex and create generator diff --git a/meson/libdir/meson.build b/meson/libdir/meson.build new file mode 100644 index 0000000000..b1b75b8618 --- /dev/null +++ b/meson/libdir/meson.build @@ -0,0 +1,4 @@ +# Libdir +# Inputs: conf + +conf.set_quoted('PKGLIBDIR', get_option('libdir'), description: 'Modules directory')