Browse Source

cmake: Fix syntax error

Donny Lawrence 5 years ago
parent
commit
bcb8b5ce0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmake/macros/PackageConfig.cmake

+ 1 - 1
cmake/macros/PackageConfig.cmake

@@ -312,7 +312,7 @@ function(export_packages filename)
 
   if(IS_OSX)
     set(exports "${exports}set(_panda_archs ${CMAKE_OSX_ARCHITECTURES})\n")
-    set(exports "${exports}if(NOT _panda_archs STREQUAL \$\{CMAKE_OSX_ARCHITECTURES\})\n")
+    set(exports "${exports}if(NOT _panda_archs STREQUAL \${CMAKE_OSX_ARCHITECTURES})\n")
     set(exports "${exports}  return()\n")
     set(exports "${exports}endif()\n")
   endif()