diff options
author | Qyriad <qyriad@qyriad.me> | 2024-05-07 13:34:36 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-05-07 17:04:30 -0600 |
commit | b9be46fb3115dffcd5cdaa62523bd025c7342e42 (patch) | |
tree | e95c1b36bf9797ce725481246980cf7c353f829d /tests/functional/plugins | |
parent | d184981af019f786df8ddb1b39527df30c62b262 (diff) |
remove the autoconf+Make buildsystem
We're not using it anymore. Any leftover bugs in the Meson buildsystem
are now just bugs.
Closes #249.
Change-Id: I0465a0c37ae819f94d40e7829f5bff046aa63d73
Diffstat (limited to 'tests/functional/plugins')
-rw-r--r-- | tests/functional/plugins/local.mk | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/functional/plugins/local.mk b/tests/functional/plugins/local.mk deleted file mode 100644 index 77339d4c6..000000000 --- a/tests/functional/plugins/local.mk +++ /dev/null @@ -1,27 +0,0 @@ -libraries += libplugintest libplugintestfail - -libplugintest_DIR := $(d) - -libplugintest_SOURCES := $(d)/plugintest.cc - -libplugintest_ALLOW_UNDEFINED := 1 - -libplugintest_EXCLUDE_FROM_LIBRARY_LIST := 1 - -libplugintest_CXXFLAGS := -I src/libutil -I src/libstore -I src/libexpr -I src/libfetchers - -libplugintestfail_DIR := $(d) - -libplugintestfail_SOURCES := $(d)/plugintestfail.cc - -libplugintestfail_ALLOW_UNDEFINED := 1 - -libplugintestfail_EXCLUDE_FROM_LIBRARY_LIST := 1 - -libplugintestfail_CXXFLAGS := -I src/libutil -I src/libstore -I src/libexpr -I src/libfetchers -DMISSING_REFERENCE - -# Make sure that the linker strictly evaluates all symbols on .so load on Linux -# so it will definitely fail to load as expected. -ifdef HOST_LINUX - libplugintestfail_LDFLAGS += -z now -endif |