diff --git a/cmake/modules/DuneCommonMacros.cmake b/cmake/modules/DuneCommonMacros.cmake
index 3e79466be777ef8288dca96cf94631a92fe9519b..6ba0cad3ce2dfaecf1ce3a1f0dc327c5f0ed5943 100644
--- a/cmake/modules/DuneCommonMacros.cmake
+++ b/cmake/modules/DuneCommonMacros.cmake
@@ -12,6 +12,9 @@ if(Fortran_Works)
   # search for lapack
   find_package(LAPACK)
   set(HAVE_LAPACK ${LAPACK_FOUND})
+  if(${HAVE_LAPACK})
+    set_property(GLOBAL APPEND PROPERTY ALL_PKG_LIBS "${LAPACK_LIBRARIES}")
+  endif(${HAVE_LAPACK})
   set(HAVE_BLAS ${BLAS_FOUND})
 else(Fortran_Works)
   set(HAVE_LAPACK Off)