diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-08-11 12:10:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-12 18:56:30 +0200 |
commit | 072961090fd53b0fdafcf76d01c90372e3528424 (patch) | |
tree | 86445eab9c8511e2fe2c22e780b7dc8a1c614a82 | |
parent | c9d287b2267d4265034a6e798c9386413cd54d80 (diff) | |
download | serenity-072961090fd53b0fdafcf76d01c90372e3528424.zip |
Ports: Add cc symlink to gcc port
-rwxr-xr-x | Ports/gcc/package.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ports/gcc/package.sh b/Ports/gcc/package.sh index 02f79c9a19..1e5e8ea199 100755 --- a/Ports/gcc/package.sh +++ b/Ports/gcc/package.sh @@ -20,4 +20,5 @@ build() { install() { run make $installopts + run ln -s gcc "${SERENITY_INSTALL_ROOT}/usr/local/bin/cc" } |