14 lines
209 B
Python
Executable File
14 lines
209 B
Python
Executable File
#!/bin/bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2024 The LineageOS Project
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
|
|
MY_DIR="$(cd "$(dirname "${0}")"; pwd -P)"
|
|
|
|
pushd "${MY_DIR}/lynx"
|
|
./setup-makefiles.py
|
|
popd
|