mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
704f48d7f3
Ports/.port_include.sh, Toolchain/BuildIt.sh, Toolchain/UseIt.sh have been left largely untouched due to use of Bash-exclusive functions and variables such as $BASH_SOURCE, pushd and popd.
10 lines
223 B
Bash
10 lines
223 B
Bash
#!/bin/bash
|
|
|
|
# This file will need to be run in bash, for now.
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export PATH="$DIR/Local/bin:$PATH"
|
|
export TOOLCHAIN="$DIR"
|
|
export SERENITY_ROOT="$DIR/.."
|
|
echo "$PATH"
|