Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / nlfaultinjection / repo / third_party / nlbuild-autotools / repo / examples / bootstrap
1 #!/usr/bin/env bash
2
3 #
4 #    Copyright 2020 nlbuild-autotools Authors. All Rights Reserved.
5 #    Copyright 2020 Google LLC. All Rights Reserved.
6 #    Copyright 2016 Nest Labs Inc. All Rights Reserved.
7 #
8 #    Licensed under the Apache License, Version 2.0 (the "License");
9 #    you may not use this file except in compliance with the License.
10 #    You may obtain a copy of the License at
11 #
12 #        http://www.apache.org/licenses/LICENSE-2.0
13 #
14 #    Unless required by applicable law or agreed to in writing, software
15 #    distributed under the License is distributed on an "AS IS" BASIS,
16 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 #    See the License for the specific language governing permissions and
18 #    limitations under the License.
19 #
20
21 #
22 #    Description:
23 #      This file is a trampoline script to the nlbuild-autotools
24 #      bootstrap script and augments it by providing the path to the
25 #      nlbuild-autotools repository for this project.
26 #
27
28 # Set this to the relative location of nlbuild-autotools to this script
29
30 nlbuild_autotools_stem="third_party/nlbuild-autotools/repo"
31
32 abs_srcdir=$(cd $(dirname "${0}") && pwd)
33
34 (cd "${abs_srcdir}" && exec "${abs_srcdir}/${nlbuild_autotools_stem}/scripts/bootstrap" -I "${abs_srcdir}/${nlbuild_autotools_stem}" "${@}")