summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-11-01 13:32:56 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-11-01 13:37:43 -0400
commit22bb1bd56800fa25a716e32641d1d9f12bc9422d (patch)
treee102de5b027c1fbcedc1b0d9ab8cf32f9b70e57b
parenteca7fa075e6ca84a80c0d90a5351f1fcb43387cf (diff)
downloadgtk+-22bb1bd56800fa25a716e32641d1d9f12bc9422d.tar.gz
reftests: Drop libtool hack
We are not using libtool anymore.
-rw-r--r--testsuite/reftests/reftest-module.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/testsuite/reftests/reftest-module.c b/testsuite/reftests/reftest-module.c
index 78fd1833aa..acab359522 100644
--- a/testsuite/reftests/reftest-module.c
+++ b/testsuite/reftests/reftest-module.c
@@ -98,25 +98,8 @@ reftest_module_new (const char *directory,
module = g_module_open (full_path, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
if (module == NULL)
{
- /* libtool hack */
- char *libtool_dir = g_build_filename (directory, ".libs", NULL);
-
g_free (full_path);
- full_path = g_module_build_path (libtool_dir, module_name);
-
- result = reftest_module_find_existing (full_path);
- if (result)
- {
- g_free (full_path);
- return reftest_module_ref (result);
- }
-
- module = g_module_open (full_path, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
- if (module == NULL)
- {
- g_free (full_path);
- return NULL;
- }
+ return NULL;
}
return reftest_module_new_take (module, full_path);