diff --git a/scripts/spack/packages/gekkofs/package.py b/scripts/spack/packages/gekkofs/package.py index 9544dbe77c6e251911be7c4b562e4a05061c5dc2..fc16fd3d15d9dbfb11f96ca64c20499d66c1c416 100755 --- a/scripts/spack/packages/gekkofs/package.py +++ b/scripts/spack/packages/gekkofs/package.py @@ -109,16 +109,6 @@ class Gekkofs(CMakePackage): ] return args - def patch(self): - # For gekkofs, add the missing Argobots::Argobots. - if self.spec.version == Version("0.9.4"): - filter_file( - r"PUBLIC dl", - "PUBLIC dl Argobots::Argobots", - "src/client/CMakeLists.txt" - ) - - def check(self): """Run tests""" with working_dir(self.build_directory): diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index 2ebed1fd186d3c40d64f2ab3037f4c5df403b1c9..a7d0247f5f6065f16651f2d2cf7affee9d017233 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -32,19 +32,6 @@ # based on syscall interception. # ############################################################################## -add_library(MySyscallHeaders INTERFACE) -add_library(MyArgobotsHeaders INTERFACE) - -target_link_libraries(MySyscallHeaders - INTERFACE - Syscall_intercept::Syscall_intercept -) - -target_link_libraries(MyArgobotsHeaders - INTERFACE - Argobots::Argobots -) - add_library(gkfs_common SHARED) target_sources(gkfs_common @@ -74,8 +61,6 @@ target_link_libraries( fmt::fmt Threads::Threads Microsoft.GSL::GSL - MySyscallHeaders - MyArgobotsHeaders ) add_library(gkfs_intercept SHARED)