diff --git a/scripts/cmake/Find.cmake b/scripts/cmake/Find.cmake
index c24ab8dc8bd24fea60e7f775a285addbfa79b6cd..254955b29e1de49396a15a94976ca9faf7c572a8 100644
--- a/scripts/cmake/Find.cmake
+++ b/scripts/cmake/Find.cmake
@@ -165,7 +165,3 @@ if(OGS_USE_CVODE)
     find_package(CVODE REQUIRED)
     add_definitions(-DCVODE_FOUND)
 endif()
-
-if(OGS_USE_MFRONT)
-    find_package(MGIS REQUIRED)
-endif()
diff --git a/scripts/cmake/FindMGIS.cmake b/scripts/cmake/FindMGIS.cmake
deleted file mode 100644
index 05d0e7d48aa7967c006466a1960f97042f4abc7f..0000000000000000000000000000000000000000
--- a/scripts/cmake/FindMGIS.cmake
+++ /dev/null
@@ -1,16 +0,0 @@
-# Find the MGIS includes and libraries
-#
-#    MGIS_INCLUDE_DIR - Where to find MGIS headers
-#    MGIS_LIBRARY     - The MGIS library to link against.
-#    MGIS_FOUND       - Do not attempt to use if "no" or undefined.
-#
-# MGIS, the MFront Generic Interface Support library
-# See https://github.com/thelfer/MFrontGenericInterfaceSupport
-#     http://tfel.sourceforge.net/generic-behaviours-interface.html
-
-find_path(MGIS_INCLUDE_DIR MGIS)
-
-find_library(MGIS_LIBRARY MFrontGenericInterface)
-
-include(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(MGIS DEFAULT_MSG MGIS_LIBRARY MGIS_INCLUDE_DIR)