From eea62e63bc1c921b7f1767c04f8d8cf0b10a43dc Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdhiser@gmail.com> Date: Fri, 8 Mar 2019 16:10:22 -0500 Subject: [PATCH] fixed elf_dep_test.so to not link libirdb, etc. --- irdb-libs/libIRDB-elfdep/test/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irdb-libs/libIRDB-elfdep/test/SConscript b/irdb-libs/libIRDB-elfdep/test/SConscript index 3f62a1b03..178a6fa8d 100644 --- a/irdb-libs/libIRDB-elfdep/test/SConscript +++ b/irdb-libs/libIRDB-elfdep/test/SConscript @@ -32,5 +32,5 @@ install=myenv.Install("$SECURITY_TRANSFORMS_HOME/plugins_install/", pgm) Default(install) files=Glob( Dir('.').srcnode().abspath+"/elf_dep_test*.cpp") -sharedLib=myenv.SharedLibrary("elf_dep_test", files, LIBPATH=LIBPATH, LIBS=LIBS) +sharedLib=myenv.SharedLibrary("elf_dep_test", files, LIBPATH=LIBPATH, LIBS="") Default(sharedLib) -- GitLab