Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
Fix header guards
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Dec 9, 2015
1 parent 10051a1 commit fbec89e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android-ndk-r10e-api-21-mips.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Copyright (c) 2015, Michele Caini
# All rights reserved.

if(DEFINED POLLY_ANDROID_NDK_R10E_API_21_ARMEABI_CMAKE_)
if(DEFINED POLLY_ANDROID_NDK_R10E_API_21_MIPS_CMAKE_)
return()
else()
set(POLLY_ANDROID_NDK_R10E_API_21_ARMEABI_CMAKE_ 1)
set(POLLY_ANDROID_NDK_R10E_API_21_MIPS_CMAKE_ 1)
endif()

include("${CMAKE_CURRENT_LIST_DIR}/utilities/polly_clear_environment_variables.cmake")
Expand Down
4 changes: 2 additions & 2 deletions android-ndk-r10e-api-21-mips64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Copyright (c) 2015, Michele Caini
# All rights reserved.

if(DEFINED POLLY_ANDROID_NDK_R10E_API_21_ARMEABI_CMAKE_)
if(DEFINED POLLY_ANDROID_NDK_R10E_API_21_MIPS64_CMAKE_)
return()
else()
set(POLLY_ANDROID_NDK_R10E_API_21_ARMEABI_CMAKE_ 1)
set(POLLY_ANDROID_NDK_R10E_API_21_MIPS64_CMAKE_ 1)
endif()

include("${CMAKE_CURRENT_LIST_DIR}/utilities/polly_clear_environment_variables.cmake")
Expand Down

1 comment on commit fbec89e

@skypjack
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My fault. Sorry. :-)

Please sign in to comment.