Browse Source

FindPkgConfig: fix confusing indentation

Rolf Eike Beer 8 years ago
parent
commit
6610fdbed2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Modules/FindPkgConfig.cmake

+ 1 - 1
Modules/FindPkgConfig.cmake

@@ -65,7 +65,7 @@ macro(_pkgconfig_invoke _pkglist _prefix _varname _regexp)
     set(_pkgconfig_${_varname} "")
     _pkgconfig_unset(${_prefix}_${_varname})
   else()
-    string(REGEX REPLACE "[\r\n]"                  " " _pkgconfig_invoke_result "${_pkgconfig_invoke_result}")
+    string(REGEX REPLACE "[\r\n]"       " " _pkgconfig_invoke_result "${_pkgconfig_invoke_result}")
 
     if (NOT ${_regexp} STREQUAL "")
       string(REGEX REPLACE "${_regexp}" " " _pkgconfig_invoke_result "${_pkgconfig_invoke_result}")