commit | 0aed0ae438eb6f5f82a18c6d7af2add7f003593d | [log] [tgz] |
---|---|---|
author | Michael Spang <spang@google.com> | Tue Mar 09 19:26:36 2021 -0500 |
committer | GitHub <noreply@github.com> | Tue Mar 09 16:26:36 2021 -0800 |
tree | ff246be0d368556ae05b7e855197c373c3d4c704 | |
parent | 722cd2a2f4eaa2e0c32792dcc8dc0c7e604f1e7b [diff] |
Fix symlinks that escape the repository (#5278) Building from a checkout in a directory such as "connectedhomeip2" turns out to build certain samples' libCHIP from a parallel checkout called "connectedhomeip". If such a checkout exists, this usually compiles, but is quite confusing when it happens. Fix the symlinks to point within the same repository regardless of directory name.
diff --git a/examples/lighting-app/efr32/third_party/connectedhomeip b/examples/lighting-app/efr32/third_party/connectedhomeip index 80527d5..c866b86 120000 --- a/examples/lighting-app/efr32/third_party/connectedhomeip +++ b/examples/lighting-app/efr32/third_party/connectedhomeip
@@ -1 +1 @@ -../../../../../connectedhomeip \ No newline at end of file +../../../.. \ No newline at end of file
diff --git a/examples/persistent-storage/efr32/third_party/connectedhomeip b/examples/persistent-storage/efr32/third_party/connectedhomeip index 80527d5..c866b86 120000 --- a/examples/persistent-storage/efr32/third_party/connectedhomeip +++ b/examples/persistent-storage/efr32/third_party/connectedhomeip
@@ -1 +1 @@ -../../../../../connectedhomeip \ No newline at end of file +../../../.. \ No newline at end of file
diff --git a/examples/pigweed-app/efr32/third_party/connectedhomeip b/examples/pigweed-app/efr32/third_party/connectedhomeip index 80527d5..c866b86 120000 --- a/examples/pigweed-app/efr32/third_party/connectedhomeip +++ b/examples/pigweed-app/efr32/third_party/connectedhomeip
@@ -1 +1 @@ -../../../../../connectedhomeip \ No newline at end of file +../../../.. \ No newline at end of file